|
From: <sv...@va...> - 2008-05-01 15:39:13
|
Author: bart
Date: 2008-05-01 16:39:18 +0100 (Thu, 01 May 2008)
New Revision: 7980
Log:
Fixed compiler warning.
Modified:
trunk/exp-drd/tests/pth_create_chain.c
Modified: trunk/exp-drd/tests/pth_create_chain.c
===================================================================
--- trunk/exp-drd/tests/pth_create_chain.c 2008-05-01 15:38:05 UTC (rev 7979)
+++ trunk/exp-drd/tests/pth_create_chain.c 2008-05-01 15:39:18 UTC (rev 7980)
@@ -31,7 +31,7 @@
int main(int argc, char** argv)
{
- int thread_count;
+ unsigned thread_count;
int i;
thread_count = argc > 1 ? atoi(argv[1]) : 50;
|