Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
Changed cast from uint32_t to size_t to work on 64 bit.
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaJanevski authored and Commit Bot committed Aug 8, 2017
1 parent 22eea4e commit df57cba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syzygy/trace/parse/parse_engine.cc
Expand Up @@ -676,7 +676,7 @@ void ModuleTraceDataToModuleInformation(
ModuleInformation* module_info) {
DCHECK_NE(static_cast<ModuleInformation*>(nullptr), module_info);
module_info->base_address.set_value(
reinterpret_cast<uint32_t>(module_data.module_base_addr));
reinterpret_cast<size_t>(module_data.module_base_addr));
module_info->module_size = module_data.module_base_size;
module_info->path = module_data.module_name;
module_info->module_checksum = module_data.module_checksum;
Expand Down

0 comments on commit df57cba

Please sign in to comment.