[haiku-commits] haiku: hrev48808 - src/apps/cortex/addons/LoggingConsumer

  • From: waddlesplash@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 15 Feb 2015 18:32:59 +0100 (CET)

hrev48808 adds 1 changeset to branch 'master'
old head: d0f53f151d426e73d466030a942a344212c3ee4c
new head: 7bd2f594a32d7c495a5c3857964dca638d680b12
overview: 
http://cgit.haiku-os.org/haiku/log/?qt=range&q=7bd2f594a32d+%5Ed0f53f151d42

----------------------------------------------------------------------------

7bd2f594a32d: Cortex: LoggingConsumer: use B_PRIdBIGTIME for message formatting.
  
  Pointed out by Axel and Jessica. Thanks!

                              [ Augustin Cavalier <waddlesplash@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev48808
Commit:      7bd2f594a32d7c495a5c3857964dca638d680b12
URL:         http://cgit.haiku-os.org/haiku/commit/?id=7bd2f594a32d
Author:      Augustin Cavalier <waddlesplash@xxxxxxxxx>
Date:        Sun Feb 15 17:29:26 2015 UTC

----------------------------------------------------------------------------

1 file changed, 2 insertions(+), 1 deletion(-)
src/apps/cortex/addons/LoggingConsumer/LoggingConsumer.cpp | 3 ++-

----------------------------------------------------------------------------

diff --git a/src/apps/cortex/addons/LoggingConsumer/LoggingConsumer.cpp 
b/src/apps/cortex/addons/LoggingConsumer/LoggingConsumer.cpp
index 1997e51..5539dbc 100644
--- a/src/apps/cortex/addons/LoggingConsumer/LoggingConsumer.cpp
+++ b/src/apps/cortex/addons/LoggingConsumer/LoggingConsumer.cpp
@@ -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();


Other related posts:

  • » [haiku-commits] haiku: hrev48808 - src/apps/cortex/addons/LoggingConsumer - waddlesplash