Skip to content

Commit

Permalink
Fix the compilation error
Browse files Browse the repository at this point in the history
Bug: none
Change-Id: I823fe99720eb0bc22f08457e78766500b7bc82ad
Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/5975023
Reviewed-by: Ivan Penkov <[email protected]>
  • Loading branch information
0xZOne authored and Ivan Penkov committed Oct 30, 2024
1 parent a70e77e commit f8d05a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/processor/stackwalk_common.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1162,7 +1162,7 @@ void PrintProcessState(const ProcessState& process_state,
printf("Crash parameters:\n");
for (const auto& param : *exception_param_vec) {
printf(" value: %" PRIu64 "\tdescription: %s\n", param.value(),
param.description());
param.description().c_str());
}
}
} else {
Expand Down

0 comments on commit f8d05a9

Please sign in to comment.