diff options
Diffstat (limited to 'converter/pbm/pbmtog3.c')
-rw-r--r-- | converter/pbm/pbmtog3.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/converter/pbm/pbmtog3.c b/converter/pbm/pbmtog3.c index f034b466..48de8885 100644 --- a/converter/pbm/pbmtog3.c +++ b/converter/pbm/pbmtog3.c @@ -145,7 +145,7 @@ flushBuffer(struct OutStream * const outP) { outbytes = pm_bigendFromUint32( buffer.intBuffer << (fullBuffer - buffer.bitCount)); if (outP->reverseBits) - reversebuffer((unsigned char *)&outbytes, bytesToWrite); + reversebuffer((unsigned char *)&outbytes, bytesToWrite); rc = fwrite((unsigned char *)&outbytes, 1, bytesToWrite, outP->fp); if (rc != bytesToWrite) pm_error("Output error"); @@ -153,6 +153,7 @@ flushBuffer(struct OutStream * const outP) { } + #if 1==0 static void putbitsDump(struct OutStream * const outP, |