# HG changeset patch # User John W. Eaton # Date 1251561059 14400 # Node ID 1393896df3b358f6deb3bc48528efe197a96080f # Parent 06b8b51dca4897149461a14427203b9e801dced0 datestr: add missing semicolon diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,7 @@ +2009-08-29 John W. Eaton + + * time/datestr.m: Add missing semicolon. + 2009-08-17 Jaroslav Hajek * general/int2str.m: Convert to double before calling log10. diff --git a/scripts/time/datestr.m b/scripts/time/datestr.m --- 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)));