[BACK]Return to ctfdump.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ctfdump

Diff for /src/usr.bin/ctfdump/ctfdump.c between version 1.25 and 1.26

version 1.25, 2022/02/10 23:40:09 version 1.26, 2022/08/10 07:58:04
Line 699 
Line 699 
                 goto exit;                  goto exit;
         }          }
   
         if (stream.total_out != len) {          if (len < 0 || (uintmax_t)stream.total_out != (uintmax_t)len) {
                 warnx("decompression failed: %llu != %llu",                  warnx("decompression failed: %lu != %lld",
                     stream.total_out, len);                      stream.total_out, len);
                 goto exit;                  goto exit;
         }          }

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26