Skip to content
Snippets Groups Projects
Commit 8ef363ed authored by Philippe Canal's avatar Philippe Canal
Browse files

some C compiler still can not handle C++ comments

git-svn-id: http://root.cern.ch/svn/root/trunk@15535 27541ba8-7e3a-0410-8455-c3a389f83636
parent 9d9aef90
No related branches found
No related tags found
No related merge requests found
/* @(#)root/zip:$Name: $:$Id: Bits.h,v 1.9 2006/06/20 13:21:24 brun Exp $ */
/* @(#)root/zip:$Name: $:$Id: Bits.h,v 1.10 2006/06/25 10:23:51 brun Exp $ */
/* Author: */
/*
......@@ -438,9 +438,10 @@ void R__zip(int cxlevel, int *srcsize, char *src, int *tgtsize, char *tgt, int *
err = deflate(&stream, Z_FINISH);
if (err != Z_STREAM_END) {
deflateEnd(&stream);
//no need to print an error message. We simply abandon the compression
//the buffer cannot be compressed or compressed buffer would be larger than original buffer
//printf("error %d in deflate (zlib) is not = %d\n",err,Z_STREAM_END);
/* No need to print an error message. We simply abandon the compression
the buffer cannot be compressed or compressed buffer would be larger than original buffer
printf("error %d in deflate (zlib) is not = %d\n",err,Z_STREAM_END);
*/
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment