skipcpio: return something at end of program

Otherwise the compiler emits a warning and the return vale is
in theory undefined.
master
Cristian Rodríguez 2014-01-28 16:41:08 -03:00 committed by Harald Hoyer
parent ba9368fa4f
commit 6b449e8a6d
1 changed files with 2 additions and 0 deletions

View File

@ -120,4 +120,6 @@ int main(int argc, char **argv)
break;
}
fclose(f);

return EXIT_SUCCESS;
}