about summary refs log tree commit diff
path: root/src/gzstream.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gzstream.cpp')
-rw-r--r--src/gzstream.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gzstream.cpp b/src/gzstream.cpp
index bbb4ba8..688b625 100644
--- a/src/gzstream.cpp
+++ b/src/gzstream.cpp
@@ -21,8 +21,8 @@
 // Revision      : $Revision: 1.7 $
 // Revision_date : $Date: 2003/01/08 14:41:27 $
 // Author(s)     : Deepak Bandyopadhyay, Lutz Kettner
-// 
-// Standard streambuf implementation following Nicolai Josuttis, "The 
+//
+// Standard streambuf implementation following Nicolai Josuttis, "The
 // Standard C++ Library".
 // ============================================================================
 
@@ -97,7 +97,7 @@ int gzstreambuf::underflow() { // used for input buffer only
           buffer + 4 + num);          // end of buffer
 
     // return next character
-    return * reinterpret_cast<unsigned char *>( gptr());    
+    return * reinterpret_cast<unsigned char *>( gptr());
 }
 
 int gzstreambuf::flush_buffer() {