Commit 8b50d84a authored by topjohnwu's avatar topjohnwu

Hide unnecessary error log

parent d3858b81
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment