Skip to content

Commit

Permalink
fix complain() fuction print newline
Browse files Browse the repository at this point in the history
  • Loading branch information
luochenglcs authored and andikleen committed Jan 12, 2024
1 parent a3a2a82 commit 346ff19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ void complain(char *fmt, ...)
va_start(ap, fmt);
fprintf(stderr, "numactl: ");
vfprintf(stderr,fmt,ap);
putchar('\n');
fputc('\n', stderr);
va_end(ap);
exit(1);
}
Expand Down

0 comments on commit 346ff19

Please sign in to comment.