diff src/oct-fstrm.cc @ 3531:97cf542676e1

[project @ 2000-02-02 11:30:40 by jwe]
author jwe
date Wed, 02 Feb 2000 11:33:32 +0000
parents b80bbb43a1a9
children 71bd2d124119
line wrap: on
line diff
--- a/src/oct-fstrm.cc	Wed Feb 02 11:18:39 2000 +0000
+++ b/src/oct-fstrm.cc	Wed Feb 02 11:33:32 2000 +0000
@@ -48,7 +48,11 @@
   fs.open (nm.c_str (), md, 0666);
 
   if (! fs)
-    error (strerror (errno));
+    {
+      using namespace std;
+
+      error (strerror (errno));
+    }
 }
 
 // Position a stream at OFFSET relative to ORIGIN.