From cef263b7c7e7f33aa5321f670f146a7ff848d30f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrico=20Tr=C3=B6ger?= Date: Tue, 26 Sep 2006 16:54:20 +0000 Subject: [PATCH] Fixed missing time stamp in status messages on Windows. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@836 ea778897-0a13-0410-b9d1-a72fbfd435f5 --- src/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.c b/src/utils.c index aaa5f7bc5..490e8d1b1 100644 --- a/src/utils.c +++ b/src/utils.c @@ -1236,7 +1236,7 @@ gchar *utils_get_current_time_string() 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; }