Fixed a warning due to the change in elf_priv.h

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7266 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-04-20 23:46:39 +00:00
parent 50f3983035
commit 7b1a988f65

View File

@ -347,7 +347,7 @@ elf_parse_dynamic_section(struct elf_image_info *image)
needed_offset = d[i].d_un.d_ptr + image->regions[0].delta;
break;
case DT_HASH:
image->symhash = (unsigned int *)(d[i].d_un.d_ptr + image->regions[0].delta);
image->symhash = (uint32 *)(d[i].d_un.d_ptr + image->regions[0].delta);
break;
case DT_STRTAB:
image->strtab = (char *)(d[i].d_un.d_ptr + image->regions[0].delta);