IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 11, 2016, 10:23:42 PM (10 years ago)
Author:
eugene
Message:

modify to pass with extremely pedantic build; force consistency for signed vs unsigned and int sizes; various relastro updates

Location:
trunk/Ohana
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana

  • trunk/Ohana/src/libfits/extern/gzip.c

    r38986 r39457  
    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.