changeset 10110:c146b308739f

missing semicolon in fileread
author Jaroslav Hajek <highegg@gmail.com>
date Thu, 14 Jan 2010 14:07:33 +0100
parents a8de53a88e07
children b52cba8be2eb
files scripts/ChangeLog scripts/io/fileread.m
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Thu Jan 14 13:50:51 2010 +0100
+++ b/scripts/ChangeLog	Thu Jan 14 14:07:33 2010 +0100
@@ -1,3 +1,7 @@
+2010-01-14  Jaroslav Hajek  <highegg@gmail.com>
+
+	* io/fileread.m: Add missing semicolon.
+
 2010-01-14  Jaroslav Hajek  <highegg@gmail.com>
 
 	* strings/strcmpi.m: Remove.
--- a/scripts/io/fileread.m	Thu Jan 14 13:50:51 2010 +0100
+++ b/scripts/io/fileread.m	Thu Jan 14 14:07:33 2010 +0100
@@ -38,7 +38,7 @@
   unwind_protect
     str = fread (fid, "*char");    
   unwind_protect_cleanup
-    fclose (fid)
+    fclose (fid);
   end_unwind_protect
 
 endfunction