From 60f360b226fd2262194dea9a8dac1b8cd15f89f7 Mon Sep 17 00:00:00 2001 From: tomiy Date: Mon, 2 Dec 2024 16:50:46 +0900 Subject: [PATCH] fix wrong definition of Duration::INFINITE --- src/structure/duration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structure/duration.rs b/src/structure/duration.rs index 395199e..758b0b1 100644 --- a/src/structure/duration.rs +++ b/src/structure/duration.rs @@ -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,