Commit 9896f1ce authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

dbghelp: Fix GCC warnings in macho_module.c.

parent 26f5bfdd
...@@ -130,7 +130,7 @@ struct image_file_map ...@@ -130,7 +130,7 @@ struct image_file_map
struct image_file_map* dsym; /* the debug symbols file associated with this one */ struct image_file_map* dsym; /* the debug symbols file associated with this one */
size_t header_size; /* size of real header in file */ size_t header_size; /* size of real header in file */
size_t commands_size; size_t commands_size;
size_t commands_count; unsigned int commands_count;
const struct macho_load_command* load_commands; const struct macho_load_command* load_commands;
const struct macho_uuid_command* uuid; const struct macho_uuid_command* uuid;
......
...@@ -566,7 +566,7 @@ static int macho_enum_load_commands(struct image_file_map *ifm, unsigned cmd, ...@@ -566,7 +566,7 @@ static int macho_enum_load_commands(struct image_file_map *ifm, unsigned cmd,
if ((lc = macho_map_load_commands(fmap)) == IMAGE_NO_MAP) return -1; if ((lc = macho_map_load_commands(fmap)) == IMAGE_NO_MAP) return -1;
TRACE("%lu total commands\n", fmap->commands_count); TRACE("%u total commands\n", fmap->commands_count);
for (i = 0; i < fmap->commands_count; i++, lc = macho_next_load_command(lc)) for (i = 0; i < fmap->commands_count; i++, lc = macho_next_load_command(lc))
{ {
...@@ -1639,7 +1639,7 @@ static BOOL macho_enum_modules_internal(const struct process* pcs, ...@@ -1639,7 +1639,7 @@ static BOOL macho_enum_modules_internal(const struct process* pcs,
} }
if (!image_infos.infos64.infoArray) if (!image_infos.infos64.infoArray)
goto done; goto done;
TRACE("Process has %u image infos at %p\n", image_infos.infos64.infoArrayCount, (void*)image_infos.infos64.infoArray); TRACE("Process has %u image infos at %s\n", image_infos.infos64.infoArrayCount, wine_dbgstr_longlong(image_infos.infos64.infoArray));
if (pcs->is_64bit) if (pcs->is_64bit)
len = sizeof(info_array->info64); len = sizeof(info_array->info64);
...@@ -1751,6 +1751,7 @@ static BOOL macho_enum_modules(struct process* process, enum_modules_cb cb, void ...@@ -1751,6 +1751,7 @@ static BOOL macho_enum_modules(struct process* process, enum_modules_cb cb, void
TRACE("(%p, %p, %p)\n", process->handle, cb, user); TRACE("(%p, %p, %p)\n", process->handle, cb, user);
macho_info.flags = MACHO_INFO_NAME; macho_info.flags = MACHO_INFO_NAME;
macho_info.module_name = NULL;
ret = macho_enum_modules_internal(process, macho_info.module_name, cb, user); ret = macho_enum_modules_internal(process, macho_info.module_name, cb, user);
HeapFree(GetProcessHeap(), 0, (char*)macho_info.module_name); HeapFree(GetProcessHeap(), 0, (char*)macho_info.module_name);
return ret; return ret;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment