Cortex: LoggingConsumer: use B_PRIdBIGTIME for message formatting.

Pointed out by Axel and Jessica. Thanks!
This commit is contained in:
Augustin Cavalier 2015-02-15 12:29:26 -05:00
parent d0f53f151d
commit 7bd2f594a3

View File

@ -527,7 +527,8 @@ LoggingConsumer::NodeRegistered()
void
LoggingConsumer::Start(bigtime_t performance_time)
{
PRINT(("LoggingConsumer::Start(%ld): now %ld\n", performance_time, TimeSource()->Now()));
PRINT(("LoggingConsumer::Start(%" B_PRIdBIGTIME "): now %" B_PRIdBIGTIME "\n",
performance_time, TimeSource()->Now()));
log_message logMsg;
logMsg.now = TimeSource()->Now();