|
From: <sv...@va...> - 2010-08-17 15:18:56
|
Author: bart
Date: 2010-08-17 16:18:47 +0100 (Tue, 17 Aug 2010)
New Revision: 11263
Log:
Fixed a compiler warning.
Modified:
trunk/drd/tests/tsan_unittest.cpp
Modified: trunk/drd/tests/tsan_unittest.cpp
===================================================================
--- trunk/drd/tests/tsan_unittest.cpp 2010-08-17 00:19:25 UTC (rev 11262)
+++ trunk/drd/tests/tsan_unittest.cpp 2010-08-17 15:18:47 UTC (rev 11263)
@@ -6620,7 +6620,7 @@
}
usleep(1000);
}
- printf("T=%ld: non_zero_received=%d\n",
+ printf("T=%zd: non_zero_received=%d\n",
(size_t)pthread_self(), non_zero_received);
}
|