From: <fr...@us...> - 2009-09-01 13:30:56
|
Revision: 4079 http://fuse-emulator.svn.sourceforge.net/fuse-emulator/?rev=4079&view=rev Author: fredm Date: 2009-09-01 13:30:50 +0000 (Tue, 01 Sep 2009) Log Message: ----------- Remove unused block_size initialisation. Modified Paths: -------------- trunk/libspectrum/hacking/ChangeLog trunk/libspectrum/szx.c Modified: trunk/libspectrum/hacking/ChangeLog =================================================================== --- trunk/libspectrum/hacking/ChangeLog 2009-09-01 13:26:45 UTC (rev 4078) +++ trunk/libspectrum/hacking/ChangeLog 2009-09-01 13:30:50 UTC (rev 4079) @@ -740,3 +740,4 @@ 20090901 rzx.c,snapshot.c,tape.c: remove unused uncompressed variable (Fred). 20090901 plusd.c: remove unused buffer modification in libspectrum_plusd_read_header (Fred). +20090901 szx.c: remove unused block_size initialisation (Fred). Modified: trunk/libspectrum/szx.c =================================================================== --- trunk/libspectrum/szx.c 2009-09-01 13:26:45 UTC (rev 4078) +++ trunk/libspectrum/szx.c 2009-09-01 13:30:50 UTC (rev 4079) @@ -2829,8 +2829,6 @@ compressed_rom_data = NULL; - block_size = 0; - #ifdef HAVE_ZLIB_H if( rom_data && compress ) { @@ -2899,8 +2897,6 @@ compressed_ram_data = compressed_rom_data = NULL; - block_size = 0; - #ifdef HAVE_ZLIB_H if( compress ) { @@ -2993,8 +2989,6 @@ compressed_ram_data = compressed_rom_data = NULL; - block_size = 0; - #ifdef HAVE_ZLIB_H if( compress ) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |