Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f5e1533f authored by zijunzhao's avatar zijunzhao
Browse files

Suppress the error warning

parent 42908c45
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -159,7 +159,8 @@ noinline void sigsegv_non_null() {
}

noinline void fprintf_null() {
    fprintf(nullptr, "oops");
    FILE* sneaky_null = nullptr;
    fprintf(sneaky_null, "oops");
}

noinline void readdir_null() {