Commit 7b3204c2 authored by diego's avatar diego

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9269 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6396679a
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#define dbgprintf #define dbgprintf
#endif #endif
main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
int fd_in, fd_out, comp_len, uncomp_len, i, last_out; int fd_in, fd_out, comp_len, uncomp_len, i, last_out;
char buf_in[1024], buf_out[65536]; char buf_in[1024], buf_out[65536];
...@@ -126,4 +126,5 @@ main(int argc, char *argv[]) ...@@ -126,4 +126,5 @@ main(int argc, char *argv[])
inflateEnd(&zstream); inflateEnd(&zstream);
close(fd_in); close(fd_in);
close(fd_out); close(fd_out);
return 0;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment