gzstream.cpp: whitespace fix

This commit is contained in:
Uwe Stöhr 2017-12-16 13:09:39 +01:00
parent 71005d6c10
commit 5ebff51e99

View File

@ -121,7 +121,7 @@ int gzstreambuf::overflow( int c) { // used for output buffer only
if ( ! ( mode & ios::out) || ! opened)
return EOF;
if (c != EOF) {
*pptr() = (char) c;
*pptr() = (char) c;
pbump(1);
}
if ( flush_buffer() == EOF)