ports/devel/mq4cpp/files/patch-include_Trace.h
Vanilla I. Shu 345b8cc79f Fix build on current/amd64.
Submitted by:	kris@ & pav@ via email.
2007-08-09 09:19:33 +00:00

11 lines
366 B
C

--- 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) ;