Skip to content

Commit

Permalink
Do not use numeric exit value
Browse files Browse the repository at this point in the history
  • Loading branch information
spiiroin committed Aug 18, 2014
1 parent 4139106 commit 5eadc59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mce.c
Expand Up @@ -129,7 +129,7 @@ void mce_quit_mainloop(void)

/* Exit immediately if there is no mainloop to terminate */
if( !mainloop ) {
exit(1);
exit(EXIT_FAILURE);
}

/* Terminate mainloop */
Expand Down

0 comments on commit 5eadc59

Please sign in to comment.