This website works better with JavaScript.
Home
Help
Sign In
linuxaudio
/
new-session-manager
mirror of
https://github.com/linuxaudio/new-session-manager
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
17
Wiki
Activity
Browse Source
Fix printf format in clock code.
tags/non-daw-v1.1.0
Jonathan Moore Liles
17 years ago
parent
fd9667ea25
commit
73282bbf4d
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Timeline/Clock.H
+ 1
- 1
Timeline/Clock.H
View File
@@ -62,7 +62,7 @@ public:
int M = S / 60; S -= M * 60;
int H = M / 60; M -= H * 60;
snprintf( dst, n, "%02d:%02d:%0
2
.1f", H, M, S );
snprintf( dst, n, "%02d:%02d:%0
4
.1f", H, M, S );
}
Write
Preview
Loading…
Cancel
Save