]> granicus.if.org Git - icinga2/commitdiff
Fix grammar mistake.
authorGunnar Beutner <gunnar.beutner@netways.de>
Mon, 2 Sep 2013 08:53:01 +0000 (10:53 +0200)
committerGunnar Beutner <gunnar.beutner@netways.de>
Mon, 2 Sep 2013 08:53:01 +0000 (10:53 +0200)
lib/base/utility.cpp

index bad318bfde928f74588c58647e5ca64d1141a648..911c867c68f6db8d544537faccab7421003f09ef 100644 (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