- Timestamp:
- Feb 26, 2016, 8:31:22 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ohana.20160226/src/libfits/extern/gzip.c
r38986 r39409 122 122 123 123 z_stream stream; 124 int i,err;124 int err; 125 125 126 126 stream.next_in = (Bytef*)source; … … 140 140 if (EXTRA_VERBOSE) { 141 141 fprintf (stderr, "inp cmp: "); 142 unsigned long int i; 142 143 for (i = 0; i < sourceLen; i++) { 143 144 fprintf (stderr, "0x%02hhx ", source[i]); … … 165 166 if (EXTRA_VERBOSE) { 166 167 fprintf (stderr, "out cmp: "); 168 unsigned long int i; 167 169 for (i = 0; i < stream.total_out; i++) { 168 170 fprintf (stderr, "0x%02hhx ", dest[i]); … … 182 184 183 185 z_stream stream; 184 int i,err;186 int err; 185 187 186 188 stream.next_in = (Bytef*)source; … … 200 202 if (EXTRA_VERBOSE) { 201 203 fprintf (stderr, "inp unc: "); 204 unsigned long int i; 202 205 for (i = 0; i < sourceLen; i++) { 203 206 fprintf (stderr, "0x%02hhx ", source[i]); … … 226 229 if (EXTRA_VERBOSE) { 227 230 fprintf (stderr, "out unc: "); 231 unsigned long int i; 228 232 for (i = 0; i < stream.total_out; i++) { 229 233 fprintf (stderr, "0x%02hhx ", dest[i]);
Note:
See TracChangeset
for help on using the changeset viewer.
