diff src/file-io.cc @ 4327:c29c382a5b4b

[project @ 2003-02-16 03:24:26 by jwe]
author jwe
date Sun, 16 Feb 2003 03:24:26 +0000
parents 1cae4472c624
children de9b588bf002
line wrap: on
line diff
--- a/src/file-io.cc	Sat Feb 15 23:14:47 2003 +0000
+++ b/src/file-io.cc	Sun Feb 16 03:24:26 2003 +0000
@@ -1550,12 +1550,12 @@
 
 	  std::ios::openmode md = fopen_mode_to_ios_mode ("w+b");
 
-	  octave_stream s = octave_iostdiostream::create (nm, fid, md);
+	  octave_stream s = octave_stdiostream::create (nm, fid, md);
 
 	  if (s)
 	    retval(0) = octave_stream_list::insert (s);
 	  else
-	    error ("tmpfile: failed to create octave_iostdiostream object");
+	    error ("tmpfile: failed to create octave_stdiostream object");
 
 	}
       else
@@ -1635,7 +1635,7 @@
 
 		  std::ios::openmode md = fopen_mode_to_ios_mode (fopen_mode);
 
-		  octave_stream s = octave_iostdiostream::create (nm, fid, md);
+		  octave_stream s = octave_stdiostream::create (nm, fid, md);
 
 		  if (s)
 		    {
@@ -1646,7 +1646,7 @@
 			mark_for_deletion (nm);
 		    }
 		  else
-		    error ("mkstemp: failed to create octave_iostdiostream object");
+		    error ("mkstemp: failed to create octave_stdiostream object");
 		}
 	      else
 		{