From: Cristian Rodríguez Date: Tue, 28 Jan 2014 19:41:08 +0000 (-0300) Subject: skipcpio: return something at end of program X-Git-Tag: 036~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b449e8a6d96df2eccabe476e41071ae6e30fe71;p=thirdparty%2Fdracut.git skipcpio: return something at end of program Otherwise the compiler emits a warning and the return vale is in theory undefined. --- diff --git a/skipcpio/skipcpio.c b/skipcpio/skipcpio.c index fbf391bf2..c9120617a 100644 --- a/skipcpio/skipcpio.c +++ b/skipcpio/skipcpio.c @@ -120,4 +120,6 @@ int main(int argc, char **argv) break; } fclose(f); + + return EXIT_SUCCESS; }