From: Uwe Stöhr Date: Sat, 16 Dec 2017 12:09:39 +0000 (+0100) Subject: gzstream.cpp: whitespace fix X-Git-Tag: lyx-2.4.0dev-acb2ca7b~4202 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=5ebff51e99b0bfc8237caf4bf009d9fe4bcfe4d3;p=features.git gzstream.cpp: whitespace fix --- diff --git a/src/support/gzstream.cpp b/src/support/gzstream.cpp index 22e7c07d09..dfad9956bd 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)