changeset 21737:ab6c639f0678

finish previous changeset (0504351a45e6).
author John W. Eaton <jwe@octave.org>
date Thu, 19 May 2016 01:33:06 -0400
parents 0504351a45e6
children a99c2407f930
files libinterp/corefcn/syscalls.cc
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/syscalls.cc	Thu May 19 01:22:06 2016 -0400
+++ b/libinterp/corefcn/syscalls.cc	Thu May 19 01:33:06 2016 -0400
@@ -60,7 +60,7 @@
 #include "input.h"
 
 static octave_scalar_map
-mk_stat_map (const base_octave::sys::file_stat& fs)
+mk_stat_map (const octave::sys::base_file_stat& fs)
 {
   octave_scalar_map m;
 
@@ -89,7 +89,7 @@
 }
 
 static octave_value_list
-mk_stat_result (const base_octave::sys::file_stat& fs)
+mk_stat_result (const octave::sys::base_file_stat& fs)
 {
   if (fs)
     return ovl (octave_value (mk_stat_map (fs)), 0, "");
@@ -852,7 +852,7 @@
     {
       int fid = octave_stream_list::get_file_number (args(0));
 
-      file_fstat fs (fid);
+      octave::sys::file_fstat fs (fid);
 
       retval = mk_stat_result (fs);
     }