From d8b461806ad41473b82c0b678c5f142c14229d78 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Wed, 2 May 2018 11:37:54 -0400 Subject: [PATCH] fix StartTime in the future log --- src/zm_event.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zm_event.cpp b/src/zm_event.cpp index 3f6b0a807..346ba6549 100644 --- a/src/zm_event.cpp +++ b/src/zm_event.cpp @@ -69,7 +69,7 @@ Event::Event( untimedEvent = true; start_time = now; } else if ( start_time.tv_sec > now.tv_sec ) { - Error("StartTime in the future %d.%d > $d.%d", + Error("StartTime in the future %d.%d > %d.%d", start_time.tv_sec, start_time.tv_usec, now.tv_sec, now.tv_usec ); start_time = now;