diff src/dirfns.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 0ff7323dab8b
line wrap: on
line diff
--- a/src/dirfns.cc	Wed Feb 02 11:18:39 2000 +0000
+++ b/src/dirfns.cc	Wed Feb 02 11:33:32 2000 +0000
@@ -73,7 +73,11 @@
   if (cd_ok)
     do_external_plotter_cd (newdir);
   else
-    error ("%s: %s", newdir.c_str (), strerror (errno));
+    {
+      using namespace std;
+
+      error ("%s: %s", newdir.c_str (), strerror (errno));
+    }
 
   return cd_ok;
 }