use unsigned for formatting

This commit is contained in:
Isaac Connor 2018-05-04 09:58:22 -04:00
parent dbdf937a56
commit 375af59657
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 %u.%u > %u.%u",
start_time.tv_sec, start_time.tv_usec, now.tv_sec, now.tv_usec
);
start_time = now;