Skip to content

Commit

Permalink
Use TBYTE for *8 reads (#277)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrw authored Dec 6, 2023
1 parent d33937f commit f9cfe76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fitsio/src/headers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,11 @@ macro_rules! writes_key_impl_int {
};
}

writes_key_impl_int!(i8, DataType::TSHORT);
writes_key_impl_int!(i8, DataType::TSBYTE);
writes_key_impl_int!(i16, DataType::TINT);
writes_key_impl_int!(i32, DataType::TINT);
writes_key_impl_int!(i64, DataType::TLONG);
writes_key_impl_int!(u8, DataType::TUSHORT);
writes_key_impl_int!(u8, DataType::TBYTE);
writes_key_impl_int!(u16, DataType::TUINT);
writes_key_impl_int!(u32, DataType::TUINT);
writes_key_impl_int!(u64, DataType::TULONG);
Expand Down

0 comments on commit f9cfe76

Please sign in to comment.