Utilities: Fix embarassing typo in syscall(1)

This commit is contained in:
Ben Wiederhake 2021-02-13 10:55:51 +01:00 committed by Andreas Kling
parent c0692f1f95
commit fcda9ee7f5
Notes: sideshowbarker 2024-07-18 22:19:53 +09:00

View file

@ -141,7 +141,7 @@ static FlatPtr parse_parameter_buffer(ArgIter& iter)
params_vec.append(parse_from(iter));
}
fprintf(stderr, "Warning: Treating unmatched ']' as literal string\n");
fprintf(stderr, "Error: Unmatched '['?!\n");
exit(1);
ASSERT_NOT_REACHED();
}