summaryrefslogtreecommitdiff
path: root/contrib/iostream2/zstream_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/iostream2/zstream_test.cpp')
-rw-r--r--contrib/iostream2/zstream_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/iostream2/zstream_test.cpp b/contrib/iostream2/zstream_test.cpp
index 5bbd56c..6273f62 100644
--- a/contrib/iostream2/zstream_test.cpp
+++ b/contrib/iostream2/zstream_test.cpp
@@ -4,9 +4,9 @@
4#include <iomanip.h> 4#include <iomanip.h>
5 5
6void main() { 6void main() {
7 char h[256] = "Hello"; 7 char h[256] = "Hello";
8 char* g = "Goodbye"; 8 char* g = "Goodbye";
9 ozstream out("temp.gz"); 9 ozstream out("temp.gz");
10 out < "This works well" < h < g; 10 out < "This works well" < h < g;
11 out.close(); 11 out.close();
12 12