diff --git a/src/add-ons/kernel/file_systems/bindfs/DebugSupport.h b/src/add-ons/kernel/file_systems/bindfs/DebugSupport.h index 394e1ba69c..84a5a6ee32 100644 --- a/src/add-ons/kernel/file_systems/bindfs/DebugSupport.h +++ b/src/add-ons/kernel/file_systems/bindfs/DebugSupport.h @@ -100,15 +100,16 @@ void dbg_printf_end(); #define DEBUG_CONTEXT(x) \ { \ dbg_printf_begin(); \ - __out(DEBUG_APP " [%Ld: %5ld] ", system_time(), DEBUG_THREAD); \ + __out(DEBUG_APP " [%" B_PRIdBIGTIME ": %5" B_PRId32 "] ", system_time(),\ + DEBUG_THREAD); \ x; \ dbg_printf_end(); \ } #define DEBUG_CONTEXT_FUNCTION(prefix, x) \ { \ dbg_printf_begin(); \ - __out(DEBUG_APP " [%Ld: %5ld] %s" prefix, system_time(), DEBUG_THREAD, \ - __PRETTY_FUNCTION__); \ + __out(DEBUG_APP " [%" B_PRIdBIGTIME ": %5" B_PRId32 "] %s" prefix, \ + system_time(), DEBUG_THREAD, __PRETTY_FUNCTION__); \ x; \ dbg_printf_end(); \ }