2004-12-28 Ulrich Drepper <drepper@redhat.com>

[BZ #726]
	* sysdeps/generic/dl-tls.c (__tls_get_addr): Fix typo.
This commit is contained in:
Roland McGrath 2005-02-16 09:23:24 +00:00
parent 2a13b6729f
commit f602ccdce4

View File

@ -577,7 +577,7 @@ __tls_get_addr (GET_ADDR_ARGS)
{
size_t cnt;
for (cnt = total = 0 ? 1 : 0; cnt < listp->len; ++cnt)
for (cnt = total == 0 ? 1 : 0; cnt < listp->len; ++cnt)
{
size_t gen = listp->slotinfo[cnt].gen;
struct link_map *map;