Skip to content

Commit

Permalink
fix wrong definition of Duration::INFINITE
Browse files Browse the repository at this point in the history
  • Loading branch information
tomiy-0x62 committed Dec 2, 2024
1 parent 1e6b118 commit 60f360b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/structure/duration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ impl Duration {
// TODO
pub const INFINITE: Self = Self {
seconds: 0x7fffffff,
fraction: 0x7fffffff,
fraction: 0xffffffff,
};
pub const ZERO: Self = Self {
seconds: 0,
Expand Down

0 comments on commit 60f360b

Please sign in to comment.