Kaydet (Commit) cef263b7 authored tarafından Enrico Tröger's avatar Enrico Tröger

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
üst c2017128
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment