mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-01-08 15:38:23 +01:00
Fixing compiler warnings:
- Building Breakpad in Xcode with arm64 architecture. - iOS Patches provided by: Ian Hickson and Greg Vance. R=mark@chromium.org Review URL: https://breakpad.appspot.com/1184003 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1286 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
70acad5df8
commit
1df13fed15
5 changed files with 9 additions and 9 deletions
|
|
@ -1479,13 +1479,13 @@ bool MinidumpGenerator::WriteModuleListStream(
|
|||
|
||||
module_list_stream->stream_type = MD_MODULE_LIST_STREAM;
|
||||
module_list_stream->location = list.location();
|
||||
list.get()->number_of_modules = image_count;
|
||||
list.get()->number_of_modules = static_cast<uint32_t>(image_count);
|
||||
|
||||
// Write out the executable module as the first one
|
||||
MDRawModule module;
|
||||
uint32_t executableIndex = FindExecutableModule();
|
||||
|
||||
if (!WriteModuleStream(executableIndex, &module)) {
|
||||
if (!WriteModuleStream(static_cast<unsigned>(executableIndex), &module)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -1494,7 +1494,7 @@ bool MinidumpGenerator::WriteModuleListStream(
|
|||
|
||||
for (uint32_t i = 0; i < image_count; ++i) {
|
||||
if (i != executableIndex) {
|
||||
if (!WriteModuleStream(i, &module)) {
|
||||
if (!WriteModuleStream(static_cast<unsigned>(i), &module)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue