From 1d4872939753f58a7139d70d35f7aedfa75a8066 Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Mon, 17 Nov 2014 19:18:55 +0100 Subject: [PATCH] There is no B_PRIdTHREAD --- headers/private/userlandfs/shared/Debug.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/headers/private/userlandfs/shared/Debug.h b/headers/private/userlandfs/shared/Debug.h index bf86c1646b..9be7001805 100644 --- a/headers/private/userlandfs/shared/Debug.h +++ b/headers/private/userlandfs/shared/Debug.h @@ -92,13 +92,13 @@ void dbg_printf_end(); #define DEBUG_THREAD find_thread(NULL) #define DEBUG_CONTEXT(x) { dbg_printf_begin(); __out(DEBUG_APP " [%" \ - B_PRIdBIGTIME ": %5" B_PRIdTHREAD "] ", system_time(), DEBUG_THREAD); \ + 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 " [%" B_PRIdBIGTIME ": %5" B_PRIdTHREAD "] %s()" prefix, \ + __out(DEBUG_APP " [%" B_PRIdBIGTIME ": %5" B_PRId32 "] %s()" prefix, \ system_time(), DEBUG_THREAD, __FUNCTION__); x; dbg_printf_end(); } #define DEBUG_CONTEXT_LINE(x) { dbg_printf_begin(); __out(DEBUG_APP " [%" \ - B_PRIdBIGTIME ": %5" B_PRIdTHREAD "] %s():%d: ", system_time(), \ + B_PRIdBIGTIME ": %5" B_PRId32 "] %s():%d: ", system_time(), \ DEBUG_THREAD, __FUNCTION__, __LINE__); x; dbg_printf_end(); } #define TPRINT(x) DEBUG_CONTEXT( __out x )