diff --git a/gstreamer-video/src/video_time_code_interval.rs b/gstreamer-video/src/video_time_code_interval.rs index 66fa19350..0c1eef8d5 100644 --- a/gstreamer-video/src/video_time_code_interval.rs +++ b/gstreamer-video/src/video_time_code_interval.rs @@ -100,7 +100,7 @@ impl Ord for VideoTimeCodeInterval { self.0 .hours .cmp(&other.0.hours) - .then_with(|| self.0.minutes.cmp(&other.0.hours)) + .then_with(|| self.0.minutes.cmp(&other.0.minutes)) .then_with(|| self.0.seconds.cmp(&other.0.seconds)) .then_with(|| self.0.frames.cmp(&other.0.frames)) }