commit 5ebff51e99b0bfc8237caf4bf009d9fe4bcfe4d3
Author: Uwe Stöhr <[email protected]>
Date: Sat Dec 16 13:09:39 2017 +0100
gzstream.cpp: whitespace fix
---
src/support/gzstream.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/support/gzstream.cpp b/src/support/gzstream.cpp
index 22e7c07..dfad995 100644
--- a/src/support/gzstream.cpp
+++ b/src/support/gzstream.cpp
@@ -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)