* iconv/gconv_simple.c (internal_ucs4le_loop): Remove cast used as
lvalue.
+2004-02-21 Andreas Jaeger <aj@suse.de>
+
+ * elf/dl-load.c (_dl_map_object_from_fd): Fix casts used as lvalue.
+
+ * iconv/gconv_simple.c (internal_ucs4le_loop): Remove cast used as
+ lvalue.
+
2004-02-19 Carlos O'Donell <carlos@baldric.uwo.ca>
* sysdeps/generic/framestate.c [__USING_SJLJ_EXCEPTIONS__]
}
else
/* Adjust the PT_PHDR value by the runtime load address. */
- (ElfW(Addr)) l->l_phdr += l->l_addr;
+ l->l_phdr = (ElfW(Phdr) *) ((ElfW(Addr)) l->l_phdr + l->l_addr);
}
#ifdef USE_TLS
}
}
else
- (ElfW(Addr)) l->l_ld += l->l_addr;
+ l->l_ld = (ElfW(Dyn) *) ((ElfW(Addr)) l->l_ld + l->l_addr);
l->l_entry += l->l_addr;