Added missing cast.

This commit is contained in:
Gerald Pfeifer 2000-09-29 00:23:26 +00:00 committed by Alexandre Julliard
parent fcc199c78a
commit bd529026e1
1 changed files with 1 additions and 1 deletions

View File

@ -1355,7 +1355,7 @@ static BOOL DEBUG_WalkList(struct r_debug* dbg_hdr)
DEBUG_READ_MEM_VERBOSE((void*)lm.l_addr, &ehdr, sizeof(ehdr)) &&
ehdr.e_type == ET_DYN && /* only look at dynamic modules */
lm.l_name != NULL &&
DEBUG_READ_MEM_VERBOSE(lm.l_name, bufstr, sizeof(bufstr))) {
DEBUG_READ_MEM_VERBOSE((void*)lm.l_name, bufstr, sizeof(bufstr))) {
bufstr[sizeof(bufstr) - 1] = '\0';
DEBUG_ProcessElfObject(bufstr, (unsigned)lm.l_addr);
}