changeset 12079:295001bff26d release-3-2-x

datestr: add missing semicolon
author John W. Eaton <jwe@octave.org>
date Tue, 01 Sep 2009 09:31:39 +0200
parents 48a9c78cfbc9
children 16a1e60b4701
files scripts/ChangeLog scripts/time/datestr.m
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -1,3 +1,7 @@
+2009-08-29  John W. Eaton  <jwe@octave.org>
+
+	* time/datestr.m: Add missing semicolon.
+
 2009-08-26  E. Joshua Rigler  <relgire@gmail.com>
 
 	* time/datestr.m: Set tm.isdst to -1 before calling mktime.
--- a/scripts/time/datestr.m
+++ b/scripts/time/datestr.m
@@ -278,7 +278,7 @@
     tm.sec = fix (sec);
     tm.usec = fix (rem (sec, 1) * 1e6);
     ## Force mktime to check for DST.
-    tm.isdst = -1
+    tm.isdst = -1;
  
     str = strftime (df, localtime (mktime (tm)));