From 375af59657dc39b064fd432e7fd4943c5505b72e Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Fri, 4 May 2018 09:58:22 -0400 Subject: [PATCH] use unsigned for formatting --- 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 3a82a40c5..721f1a3b5 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 %u.%u > %u.%u", start_time.tv_sec, start_time.tv_usec, now.tv_sec, now.tv_usec ); start_time = now;