Fix grammar mistake.

This commit is contained in:
Gunnar Beutner 2013-09-02 10:53:01 +02:00
parent 9f0d47f124
commit d5650c90c9
1 changed files with 1 additions and 1 deletions

View File

@ -425,7 +425,7 @@ void Utility::QueueAsyncCallback(const boost::function<void (void)>& callback)
String Utility::FormatDateTime(const char *format, double ts)
{
char timestamp[128];
time_t tempts = (time_t)ts; /* We don't handle sub-second timestamp here just yet. */
time_t tempts = (time_t)ts; /* We don't handle sub-second timestamps here just yet. */
tm tmthen;
#ifdef _MSC_VER