Remember to return EXIT_FAILURE from main()

Doesn't matter in this case but gets rid of compiler warnings.
This commit is contained in:
sin 2014-04-14 09:46:39 +01:00
parent 483839d876
commit 38a0ce084f
1 changed files with 1 additions and 0 deletions

View File

@ -134,4 +134,5 @@ main(int argc, char **argv)
/* execute init */
execv(argv[1], argv);
eprintf("can't execute '%s'\n", argv[1]);
return EXIT_FAILURE;
}