From 6330fde479b22b338f06b5beb36d3711a02c1bec Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Wed, 28 May 2008 00:20:45 -0500 Subject: [PATCH] Fix format for HMS clock. --- Timeline/Clock.H | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Timeline/Clock.H b/Timeline/Clock.H index 6b0f9d4..f7da0e1 100644 --- a/Timeline/Clock.H +++ b/Timeline/Clock.H @@ -82,7 +82,7 @@ public: int M = S / 60; S -= M * 60; int H = M / 60; M -= H * 60; - snprintf( dst, n, "%02d:%02d:%05.3f", H, M, S ); + snprintf( dst, n, "%02d:%02d:%06.3f", H, M, S ); } static void