From 8c4ce72f66f5d2b8b01689d1282ae3491b714130 Mon Sep 17 00:00:00 2001 From: pixel Date: Sun, 13 Jul 2003 02:12:38 +0000 Subject: Small fixes --- lib/Handle.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/Handle.cc b/lib/Handle.cc index 69f6111..d6fa0fb 100644 --- a/lib/Handle.cc +++ b/lib/Handle.cc @@ -312,7 +312,7 @@ void Handle::SetZ(int az) throw (GeneralException) { } } } else if (az) { - char format[4]; + char format[5]; int index = 0; if (CanRead()) { format[index++] = 'r'; @@ -321,6 +321,7 @@ void Handle::SetZ(int az) throw (GeneralException) { format[index++] = 'w'; } format[index++] = (char) (az + '0'); + format[index++] = 'b'; format[index] = 0; #ifdef FULLDEBUG printm(M_INFO, String(_("Performing gzdopen on handle ")) + h + _(" with mode \"") + format + "\"\n"); -- cgit v1.2.3