summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index bdbad85..ec34073 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -84,8 +84,8 @@ fn duration_as_human_string(duration_ms: u64) -> String {
let duration_hours = duration_min / 60;
let duration_ms = duration_ms % 1000;
- let duration_sec = duration_sec & 60;
- let duration_min = duration_hours & 60;
+ let duration_sec = duration_sec % 60;
+ let duration_min = duration_hours % 60;
// no need to clamp hours, we're gonna just hope that it's a reasonable number of hours
if duration_hours != 0 {