fix gcc4 warning about wrong argument type.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25967 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Maurice Kalinowski
2008-06-15 19:21:00 +00:00
parent 6af681d7e6
commit 53779f07a4
+2 -2
View File
@@ -47,10 +47,10 @@ extern "C" {
PRINT(("%s\t", #OBJ)); \
(OBJ).PrintToStream(); \
} ((void)0)
#define TRACE() _debugPrintf("File: %s, Line: %d, Thread: %d\n", \
#define TRACE() _debugPrintf("File: %s, Line: %d, Thread: %ld\n", \
__FILE__, __LINE__, find_thread(NULL))
#define SERIAL_TRACE() _sPrintf("File: %s, Line: %d, Thread: %d\n", \
#define SERIAL_TRACE() _sPrintf("File: %s, Line: %d, Thread: %ld\n", \
__FILE__, __LINE__, find_thread(NULL))
#define DEBUGGER(MSG) if (_rtDebugFlag) debugger(MSG)