|
From: <sv...@va...> - 2010-06-09 23:55:35
|
Author: njn
Date: 2010-06-10 00:55:25 +0100 (Thu, 10 Jun 2010)
New Revision: 11168
Log:
Make this test build on 64-bit Mac.
Modified:
branches/MACOSX106/drd/tests/tsan_unittest.cpp
Modified: branches/MACOSX106/drd/tests/tsan_unittest.cpp
===================================================================
--- branches/MACOSX106/drd/tests/tsan_unittest.cpp 2010-06-09 22:33:02 UTC (rev 11167)
+++ branches/MACOSX106/drd/tests/tsan_unittest.cpp 2010-06-09 23:55:25 UTC (rev 11168)
@@ -6620,8 +6620,8 @@
}
usleep(1000);
}
- printf("T=%d: non_zero_received=%d\n",
- (int)pthread_self(), non_zero_received);
+ printf("T=%ld: non_zero_received=%d\n",
+ (size_t)pthread_self(), non_zero_received);
}
void Run() {
|