summaryrefslogtreecommitdiff
path: root/src/lib/util.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-04-16 18:27:07 +0200
committerCarl Hetherington <cth@carlh.net>2026-04-16 18:27:27 +0200
commit6c0d58aca6c51128ecc47aa6d585c1221fd55c3d (patch)
treefed1e0c393d2f7396604d9b97587da76942d9cc0 /src/lib/util.cc
parent0198f1d4e9d763dfa05e0f4291f003b0d1bb9e03 (diff)
Fix some confusing use of period in a timecode (#3148).
I think it should just be colons all the way.
Diffstat (limited to 'src/lib/util.cc')
-rw-r--r--src/lib/util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc
index 1f5bec22c..60b93a0c4 100644
--- a/src/lib/util.cc
+++ b/src/lib/util.cc
@@ -171,7 +171,7 @@ time_to_hmsf(DCPTime time, Frame rate)
m -= h * 60;
char buffer[64];
- snprintf(buffer, sizeof(buffer), "%02d:%02d:%02d.%02d", h, m, s, static_cast<int>(f));
+ snprintf(buffer, sizeof(buffer), "%02d:%02d:%02d:%02d", h, m, s, static_cast<int>(f));
return buffer;
}