Skip to content

Commit

Permalink
Simulator: error.h red leaking fix
Browse files Browse the repository at this point in the history
  • Loading branch information
agkaminski committed May 8, 2018
1 parent 3ddd096 commit 91bb595
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simulator/error.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#define FATAL(msg, ...) do { \
fprintf(stderr, RED "[FATAL] [%s:%d] (%s): ", __FILE__, __LINE__, __func__); \
fprintf(stderr, msg, ##__VA_ARGS__); \
fprintf(stderr, "Press Any Key to Exit...\n"); \
fprintf(stderr, "\nPress Any Key to Exit...\n" RESET); \
getchar(); \
exit(1); \
} while (0)
Expand Down

0 comments on commit 91bb595

Please sign in to comment.