[FFmpeg-cvslog] r9269 - trunk/cws2fws.c
diego
subversion
Sun Jun 10 16:14:48 CEST 2007
Author: diego
Date: Sun Jun 10 16:14:47 2007
New Revision: 9269
Log:
Make main() return 0 at the end and mark as int.
Modified:
trunk/cws2fws.c
Modified: trunk/cws2fws.c
==============================================================================
--- trunk/cws2fws.c (original)
+++ trunk/cws2fws.c Sun Jun 10 16:14:47 2007
@@ -19,7 +19,7 @@
#define dbgprintf
#endif
-main(int argc, char *argv[])
+int main(int argc, char *argv[])
{
int fd_in, fd_out, comp_len, uncomp_len, i, last_out;
char buf_in[1024], buf_out[65536];
@@ -126,4 +126,5 @@ main(int argc, char *argv[])
inflateEnd(&zstream);
close(fd_in);
close(fd_out);
+ return 0;
}
More information about the ffmpeg-cvslog
mailing list