diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-06-09 08:50:15 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-06-09 08:50:15 +0000 |
commit | 15bf461bb6041557409d5437b2609842933cd9f2 (patch) | |
tree | 0acbd998eb72fa50ae2416695c416323f0937e0d | |
parent | 62dd740c7cf19f0895275bbedb00489e4d1c6458 (diff) | |
download | ffmpeg-15bf461bb6041557409d5437b2609842933cd9f2.tar.gz |
Remove unused variable.
Originally committed as revision 9262 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | cws2fws.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ main(int argc, char *argv[]) { - int fd_in, fd_out, comp_len, uncomp_len, tag, i, last_out; + int fd_in, fd_out, comp_len, uncomp_len, i, last_out; char buf_in[1024], buf_out[65536]; z_stream zstream; struct stat statbuf; |