diff packages/kernel/current/tests/ksem1.c @ 2052:ec1655a2f96e

* tests/ksem1.c: Type fix to fix a compiler warning. * tests/mutex3.cxx: new cannot be both static and global. * tests/testaux.hxx: Ditto
author asl
date Wed, 03 Aug 2005 20:57:41 +0000
parents d2c90368aeef
children 74dbf4c3f2e1
line wrap: on
line diff
--- a/packages/kernel/current/tests/ksem1.c
+++ b/packages/kernel/current/tests/ksem1.c
@@ -72,7 +72,7 @@ static volatile cyg_ucount8 q = 0;
 
 static void entry0( cyg_addrword_t data )
 {
-    cyg_ucount32 val;
+    cyg_count32 val;
 
     cyg_semaphore_wait(&s0);
     CHECK( 1 == q++ );