diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2011-04-24 10:32:54 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2011-04-24 10:32:54 +0000 |
commit | 9b5b9e48a67ed642a9222194345f195783c15b82 (patch) | |
tree | 89a38e3094f2b6f38fbe877f5b242c1bae0febda | |
parent | 422ab6ba432f326fc8989b80c6b29936b5b40a91 (diff) |
Expedite: use cross platform values
SVN revision: 58866
-rw-r--r-- | src/bin/ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/ui.c b/src/bin/ui.c index 041f92f..9e1dad7 100644 --- a/src/bin/ui.c +++ b/src/bin/ui.c | |||
@@ -246,7 +246,7 @@ _ui_all(void) | |||
246 | 246 | ||
247 | now = time(NULL); | 247 | now = time(NULL); |
248 | tim = localtime(&now); | 248 | tim = localtime(&now); |
249 | if (tim) strftime(datestr, sizeof(datestr), "%F %T", tim); | 249 | if (tim) strftime(datestr, sizeof(datestr), "%Y-%m-%d %H:%M:%S", tim); |
250 | else snprintf(datestr, sizeof(datestr), "unknown"); | 250 | else snprintf(datestr, sizeof(datestr), "unknown"); |
251 | // printf("%5.2f , EVAS SPEED\n", fps / t_count); | 251 | // printf("%5.2f , EVAS SPEED\n", fps / t_count); |
252 | printf("%5.2f , EVAS SPEED (WEIGHTED), " | 252 | printf("%5.2f , EVAS SPEED (WEIGHTED), " |