mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-27 20:15:29 +00:00
Hide unnecessary error log
This commit is contained in:
parent
d3858b81e2
commit
8b50d84a05
@ -531,7 +531,7 @@ void startup() {
|
|||||||
|
|
||||||
// Increment boot count
|
// Increment boot count
|
||||||
int boot_count = 0;
|
int boot_count = 0;
|
||||||
FILE *cf = xfopen(BOOTCOUNT, "r");
|
FILE *cf = fopen(BOOTCOUNT, "r");
|
||||||
if (cf) {
|
if (cf) {
|
||||||
fscanf(cf, "%d", &boot_count);
|
fscanf(cf, "%d", &boot_count);
|
||||||
fclose(cf);
|
fclose(cf);
|
||||||
|
Loading…
Reference in New Issue
Block a user