correct exit status

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2026-03-30 07:12:25 +01:00
parent 9400f4ea0b
commit fb5f1b4ed1
+1 -1
View File
@@ -36,7 +36,7 @@ main(int argc, char **argv)
free_and_set_null(&buf);
fprintf(stderr, "\n%s\n", same ? "You win!" : "You lose!");
return same ^ 1;
return same ? EXIT_SUCCESS : EXIT_FAILURE;
}
static void