Skip to content

Commit

Permalink
main: drop magic numbers
Browse files Browse the repository at this point in the history
use EXIT_FAILURE and EXIT_SUCCESS instead.

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
  • Loading branch information
giuseppe committed Oct 24, 2019
1 parent 4792fd0 commit dba5172
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.c
Expand Up @@ -5143,5 +5143,6 @@ main (int argc, char *argv[])

fuse_opt_free_args (&args);

return ret ? 1 : 0;
exit (ret ? EXIT_FAILURE : EXIT_SUCCESS);
return 1;
}

0 comments on commit dba5172

Please sign in to comment.