mirror of git://git.suckless.org/ubase
Remember to return EXIT_FAILURE from main()
Doesn't matter in this case but gets rid of compiler warnings.
This commit is contained in:
parent
483839d876
commit
38a0ce084f
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue