From 8b50d84a0528aad812496ce33a4abcaea39ddf1d Mon Sep 17 00:00:00 2001 From: topjohnwu Date: Thu, 9 Aug 2018 15:10:00 +0800 Subject: [PATCH] Hide unnecessary error log --- native/jni/core/bootstages.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/jni/core/bootstages.c b/native/jni/core/bootstages.c index dc854d62a..e8daee5ca 100644 --- a/native/jni/core/bootstages.c +++ b/native/jni/core/bootstages.c @@ -531,7 +531,7 @@ void startup() { // Increment boot count int boot_count = 0; - FILE *cf = xfopen(BOOTCOUNT, "r"); + FILE *cf = fopen(BOOTCOUNT, "r"); if (cf) { fscanf(cf, "%d", &boot_count); fclose(cf);