changeset 11546:1b7bb90e670a

syscalls.cc: missing semicolons
author John W. Eaton <jwe@octave.org>
date Sat, 15 Jan 2011 12:02:41 -0500
parents a34ccc8e2f8e
children e1851653d59c
files src/ChangeLog src/syscalls.cc
diffstat 2 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Sat Jan 15 07:20:03 2011 -0800
+++ b/src/ChangeLog	Sat Jan 15 12:02:41 2011 -0500
@@ -1,3 +1,7 @@
+2011-01-15  John W. Eaton  <jwe@octave.org>
+
+	* syscalls.cc (FWEXITSTATUS, FWIFEXITED): Missing semicolon.
+
 2011-01-15  John W. Eaton  <jwe@octave.org>
 
 	* ov-fcn-handle.cc: Use version instead of flops in test.
--- a/src/syscalls.cc	Sat Jan 15 07:20:03 2011 -0800
+++ b/src/syscalls.cc	Sat Jan 15 12:02:41 2011 -0500
@@ -1386,7 +1386,7 @@
         error ("WIFEXITED: expecting integer argument");
     }
 #else
-  warning ("WIFEXITED always returns false in this version of Octave")
+  warning ("WIFEXITED always returns false in this version of Octave");
 #endif
 
   return retval;
@@ -1414,7 +1414,7 @@
         error ("WEXITSTATUS: expecting integer argument");
     }
 #else
-  warning ("WEXITSTATUS always returns false in this version of Octave")
+  warning ("WEXITSTATUS always returns false in this version of Octave");
 #endif
 
   return retval;