Skip to content

Commit

Permalink
Fix following rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
kevingosse committed Feb 21, 2025
1 parent cf5ea53 commit 14136df
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crashtracker-ffi/src/collector_windows/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -469,8 +469,7 @@ unsafe fn walk_thread_stack(
if let Some(pdb_info) = &module.pdb_info {
frame.build_id = Some(format!("{:x}{:x}", pdb_info.signature, pdb_info.age));
frame.build_id_type = Some(datadog_crashtracker::BuildIdType::PDB);
frame.file_type = Some(datadog_crashtracker::FileType::PDB);
frame.build_id_type = Some(datadog_crashtracker::BuildIdType::PDB);
frame.file_type = Some(datadog_crashtracker::FileType::PE);
}
}

Expand Down

0 comments on commit 14136df

Please sign in to comment.