fix fprintf in tests
This commit is contained in:
parent
d65c8fbb33
commit
a04bf8a8e0
@ -59,17 +59,17 @@ int main(int argc, char **argv) {
|
||||
|
||||
test_case = malloc(sizeof(int) * n);
|
||||
if (test_case == NULL) {
|
||||
fprintf("Error: Out of heap space!\n");
|
||||
fprintf(stderr, "Error: Out of heap space!\n");
|
||||
exit(1);
|
||||
}
|
||||
qarray = malloc(sizeof(int) * n);
|
||||
if (qarray == NULL) {
|
||||
fprintf("Error: Out of heap space!\n");
|
||||
fprintf(stderr, "Error: Out of heap space!\n");
|
||||
exit(1);
|
||||
}
|
||||
test_array = malloc(sizeof(int) * n);
|
||||
if (test_array == NULL) {
|
||||
fprintf("Error: Out of heap space!\n");
|
||||
fprintf(stderr, "Error: Out of heap space!\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user