diff options
Diffstat (limited to 'lldb/source/Host/macosx/Host.mm')
-rw-r--r-- | lldb/source/Host/macosx/Host.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Host/macosx/Host.mm b/lldb/source/Host/macosx/Host.mm index 62669becc30..6cfc59d8d4d 100644 --- a/lldb/source/Host/macosx/Host.mm +++ b/lldb/source/Host/macosx/Host.mm @@ -1079,7 +1079,7 @@ GetMacOSXProcessArgs (const ProcessInstanceInfoMatch *match_info_ptr, if (::sysctl (proc_args_mib, 3, arg_data, &arg_data_size , NULL, 0) == 0) { DataExtractor data (arg_data, arg_data_size, lldb::endian::InlHostByteOrder(), sizeof(void *)); - uint32_t offset = 0; + lldb::offset_t offset = 0; uint32_t argc = data.GetU32 (&offset); const char *cstr; |