(HWCAP_CHECK): Fix access to _dl_hwcap.

This commit is contained in:
Andreas Jaeger 2000-11-14 14:55:49 +00:00
parent ca7ed9daa9
commit cf4dea799b
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ _dl_load_cache_lookup (const char *name)
hwcap = &_dl_hwcap;
#define HWCAP_CHECK \
if (hwcap && (cache_new->libs[middle].hwcap & *hwcap) > _dl_hwcap) \
if (hwcap && (cache_new->libs[middle].hwcap & *hwcap) > *hwcap) \
continue
SEARCH_CACHE (cache_new);
}