]> git.lyx.org Git - features.git/commitdiff
gzstream.cpp: whitespace fix
authorUwe Stöhr <uwestoehr@lyx.org>
Sat, 16 Dec 2017 12:09:39 +0000 (13:09 +0100)
committerUwe Stöhr <uwestoehr@lyx.org>
Sat, 16 Dec 2017 12:09:39 +0000 (13:09 +0100)
src/support/gzstream.cpp

index 22e7c07d091af1a412a9da38c5c212da21d90008..dfad9956bdf4b5a588536263b9ef54b6b032e709 100644 (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)