diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2007-08-09 09:19:33 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2007-08-09 09:19:33 +0000 |
commit | 345b8cc79fd1a9dc6fe992f5ca20007747243437 (patch) | |
tree | fe3d964402a0c63b3e91b658e7fab164b39c8b18 /devel/mq4cpp | |
parent | 6db5880eefacda9c8657c3c5f7c182826603d3fb (diff) |
Fix build on current/amd64.
Submitted by: kris@ & pav@ via email.
Notes
Notes:
svn path=/head/; revision=197371
Diffstat (limited to 'devel/mq4cpp')
-rw-r--r-- | devel/mq4cpp/files/patch-include_Trace.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/mq4cpp/files/patch-include_Trace.h b/devel/mq4cpp/files/patch-include_Trace.h new file mode 100644 index 000000000000..28b400e13e49 --- /dev/null +++ b/devel/mq4cpp/files/patch-include_Trace.h @@ -0,0 +1,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) ;
|