Skip to content

Commit

Permalink
Correct 32bit implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianSchmid committed Jun 17, 2024
1 parent 3761380 commit 2870542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ft/dlt_ft_int.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ impl From<i64> for DltFtInt {
#[cfg(target_pointer_width = "32")]
impl From<isize> for DltFtInt {
fn from(value: isize) -> Self {
DltFtInt::I32(value as u32)
DltFtInt::I32(value as i32)
}
}

Expand Down

0 comments on commit 2870542

Please sign in to comment.