Browse Source

Be a little more verbose about why increases fail

dynamic-accesslists
erdgeist 17 years ago
parent
commit
a146a32885
  1. 2
      ot_fullscrape.c

2
ot_fullscrape.c

@ -100,7 +100,7 @@ static int fullscrape_increase( int *iovec_entries, struct iovec **iovector, @@ -100,7 +100,7 @@ static int fullscrape_increase( int *iovec_entries, struct iovec **iovector,
strm->next_out = (uint8_t*)*r;
strm->avail_out = OT_SCRAPE_CHUNK_SIZE;
if( deflate( strm, zaction ) < Z_OK )
fprintf( stderr, "deflate() failed while in fullscrape_increase().\n" );
fprintf( stderr, "deflate() failed while in fullscrape_increase(%d).\n", zaction );
*r = (char*)strm->next_out;
}
#endif

Loading…
Cancel
Save