summaryrefslogtreecommitdiff
path: root/libpthread/nptl/pthread_key_create.c
diff options
context:
space:
mode:
authorMirko Vogt <dev@nanl.de>2010-06-21 20:23:14 +0200
committerAustin Foxley <austinf@cetoncorp.com>2010-06-21 11:28:07 -0700
commitef487a35f428da6240003dca23b9d29908e2285e (patch)
treed6c73a4f831fc6ca26dfd7fef2a60041e3cd54ff /libpthread/nptl/pthread_key_create.c
parent6306cfe1713ad02c9c3d4b7940191bc95d27b14f (diff)
avoid using c99 syntax
Signed-off-by: Mirko Vogt <dev@nanl.de> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libpthread/nptl/pthread_key_create.c')
-rw-r--r--libpthread/nptl/pthread_key_create.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libpthread/nptl/pthread_key_create.c b/libpthread/nptl/pthread_key_create.c
index d3c1d2662..be32517ec 100644
--- a/libpthread/nptl/pthread_key_create.c
+++ b/libpthread/nptl/pthread_key_create.c
@@ -29,7 +29,8 @@ __pthread_key_create (
void (*destr) (void *))
{
/* Find a slot in __pthread_kyes which is unused. */
- for (size_t cnt = 0; cnt < PTHREAD_KEYS_MAX; ++cnt)
+ size_t cnt;
+ for (cnt = 0; cnt < PTHREAD_KEYS_MAX; ++cnt)
{
uintptr_t seq = __pthread_keys[cnt].seq;