diff options
author | Mirko Vogt <dev@nanl.de> | 2010-06-21 20:23:14 +0200 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2010-06-21 11:28:07 -0700 |
commit | ef487a35f428da6240003dca23b9d29908e2285e (patch) | |
tree | d6c73a4f831fc6ca26dfd7fef2a60041e3cd54ff /libpthread/nptl/sysdeps/generic | |
parent | 6306cfe1713ad02c9c3d4b7940191bc95d27b14f (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/sysdeps/generic')
-rw-r--r-- | libpthread/nptl/sysdeps/generic/dl-tls.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libpthread/nptl/sysdeps/generic/dl-tls.c b/libpthread/nptl/sysdeps/generic/dl-tls.c index da6ebbddb..b65608f80 100644 --- a/libpthread/nptl/sysdeps/generic/dl-tls.c +++ b/libpthread/nptl/sysdeps/generic/dl-tls.c @@ -258,7 +258,8 @@ _dl_determine_tlsoffset (void) /* We simply start with zero. */ size_t offset = 0; - for (size_t cnt = 0; slotinfo[cnt].map != NULL; ++cnt) + size_t cnt; + for (cnt = 0; slotinfo[cnt].map != NULL; ++cnt) { assert (cnt < GL(dl_tls_dtv_slotinfo_list)->len); |