mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
Make main() return 0 at the end and mark as int.
Originally committed as revision 9269 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
a65bafeff0
commit
226cbe07c7
@ -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[])
|
|||||||
inflateEnd(&zstream);
|
inflateEnd(&zstream);
|
||||||
close(fd_in);
|
close(fd_in);
|
||||||
close(fd_out);
|
close(fd_out);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user