fix StartTime in the future log
This commit is contained in:
parent
d46c06d201
commit
d8b461806a
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue