[SCM] libav/experimental: Make main() return 0 at the end and mark as int.
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 16:01:29 UTC 2013
The following commit has been merged in the experimental branch:
commit 226cbe07c72370172674e2dd57bbc7ac8b48867e
Author: Diego Biurrun <diego at biurrun.de>
Date: Sun Jun 10 14:14:47 2007 +0000
Make main() return 0 at the end and mark as int.
Originally committed as revision 9269 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/cws2fws.c b/cws2fws.c
index 5d8f524..ef40f31 100644
--- a/cws2fws.c
+++ b/cws2fws.c
@@ -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;
}
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list