提交 226cbe07 编写于 作者: D Diego Biurrun

Make main() return 0 at the end and mark as int.

Originally committed as revision 9269 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 a65bafef
......@@ -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;
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册