blob: 28b400e13e49607cb61f3e6e76f6a04fa1c90e98 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- include/Trace.h.orig Sat Mar 17 01:42:59 2007
+++ include/Trace.h Thu Aug 9 17:17:25 2007
@@ -92,7 +92,7 @@
}
#else
#define TRACE(a) \
- cout << __FILE__ << "(" << __LINE__ << ") #" << (int)pthread_self() << ": " << a << endl;
+ cout << __FILE__ << "(" << __LINE__ << ") #" << pthread_self() << ": " << a << endl;
#endif
#else
#define TRACE(a) ;
|