Skip to content

Commit 41998c2

Browse files
committed
Cast Sig as Int
1 parent 60b9a72 commit 41998c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

CommandLine.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ int CommandLine_run(int argc, char** argv) {
420420
CRT_done();
421421

422422
if (terminate_requested) {
423-
fprintf(stderr, "\nInterrupted by signal %ld, terminating.\n", (long)terminate_signal);
423+
fprintf(stderr, "\nInterrupted by signal %d, terminating.\n", (int)terminate_signal);
424424
exit(128 + (int)terminate_signal);
425425
}
426426

0 commit comments

Comments
 (0)