fix StartTime in the future log

This commit is contained in:
Isaac Connor 2018-05-02 11:37:54 -04:00
parent d46c06d201
commit d8b461806a
1 changed files with 1 additions and 1 deletions

View File

@ -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;