IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 26, 2016, 8:31:22 PM (10 years ago)
Author:
eugene
Message:

working on very pedantic gcc to track down memory corruption issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ohana.20160226/src/libfits/extern/gzip.c

    r38986 r39409  
    122122
    123123  z_stream stream;
    124   int i, err;
     124  int err;
    125125 
    126126  stream.next_in = (Bytef*)source;
     
    140140  if (EXTRA_VERBOSE) {
    141141    fprintf (stderr, "inp cmp: ");
     142    unsigned long int i;
    142143    for (i = 0; i < sourceLen; i++) {
    143144      fprintf (stderr, "0x%02hhx ", source[i]);
     
    165166  if (EXTRA_VERBOSE) {
    166167    fprintf (stderr, "out cmp: ");
     168    unsigned long int i;
    167169    for (i = 0; i < stream.total_out; i++) {
    168170      fprintf (stderr, "0x%02hhx ", dest[i]);
     
    182184
    183185  z_stream stream;
    184   int i, err;
     186  int err;
    185187 
    186188  stream.next_in = (Bytef*)source;
     
    200202  if (EXTRA_VERBOSE) {
    201203    fprintf (stderr, "inp unc: ");
     204    unsigned long int i;
    202205    for (i = 0; i < sourceLen; i++) {
    203206      fprintf (stderr, "0x%02hhx ", source[i]);
     
    226229  if (EXTRA_VERBOSE) {
    227230    fprintf (stderr, "out unc: ");
     231    unsigned long int i;
    228232    for (i = 0; i < stream.total_out; i++) {
    229233      fprintf (stderr, "0x%02hhx ", dest[i]);
Note: See TracChangeset for help on using the changeset viewer.