diff src/utils.cc @ 4135:e865976c2084

[project @ 2002-10-30 01:32:43 by jwe]
author jwe
date Wed, 30 Oct 2002 01:32:43 +0000
parents 0435429c1050
children 62afb31c1f85
line wrap: on
line diff
--- a/src/utils.cc
+++ b/src/utils.cc
@@ -717,7 +717,10 @@
 
 #if defined (__GNUG__) && !CXX_ISO_COMPLIANT_LIBRARY
 
-  os.vform (fmt, args);
+  std::streambuf *sb = os.rdbuf ();
+
+  if (sb)
+    retval = sb->vform (fmt, args);
 
 #else