diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-03-23 20:08:57 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-03-23 20:08:57 +0000 |
| commit | f835bba83faaf17f18b200dce777abe469633193 (patch) | |
| tree | b5fa74253f07cd69d71b3190ef35da730f879d3b /src | |
| parent | bf7ed340b5a10eb810e4e326c119271254eb869b (diff) | |
Try to fix format string specifier error on Windows.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/timecode.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/timecode.cc b/src/wx/timecode.cc index a8c90b488..ee5b5604b 100644 --- a/src/wx/timecode.cc +++ b/src/wx/timecode.cc @@ -102,7 +102,7 @@ Timecode::set (Time t, int fps) checked_set (_seconds, lexical_cast<string> (s)); checked_set (_frames, lexical_cast<string> (f)); - _fixed->SetLabel (wxString::Format ("%02d:%02d:%02d.%02ld", h, m, s, f)); + _fixed->SetLabel (wxString::Format ("%02d:%02d:%02d.%02" wxLongLongFmtSpec "d", h, m, s, f)); } Time |
