Revision: 836 http://svn.sourceforge.net/geany/?rev=836&view=rev Author: eht16 Date: 2006-09-26 09:54:20 -0700 (Tue, 26 Sep 2006)
Log Message: ----------- Fixed missing time stamp in status messages on Windows.
Modified Paths: -------------- trunk/src/utils.c
Modified: trunk/src/utils.c =================================================================== --- trunk/src/utils.c 2006-09-26 16:29:44 UTC (rev 835) +++ trunk/src/utils.c 2006-09-26 16:54:20 UTC (rev 836) @@ -1236,7 +1236,7 @@ const struct tm *tmval = localtime(&tp); gchar *result = g_malloc0(9);
- strftime(result, 9, "%T", tmval); + strftime(result, 9, "%H:%M:%S", tmval); result[8] = '\0'; return result; }
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.