|
From: <sv...@va...> - 2008-05-01 14:36:33
|
Author: bart
Date: 2008-05-01 15:36:39 +0100 (Thu, 01 May 2008)
New Revision: 7975
Log:
Fixed a compiler warning.
Modified:
trunk/helgrind/tests/tc17_sembar.c
Modified: trunk/helgrind/tests/tc17_sembar.c
===================================================================
--- trunk/helgrind/tests/tc17_sembar.c 2008-05-01 14:11:45 UTC (rev 7974)
+++ trunk/helgrind/tests/tc17_sembar.c 2008-05-01 14:36:39 UTC (rev 7975)
@@ -150,7 +150,7 @@
and this is interesting background:
www.hpl.hp.com/techreports/2004/HPL-2004-209.pdf
*/
-volatile static long unprotected = 0;
+static volatile long unprotected = 0;
void* child ( void* argV )
{
|