diff options
| author | jhurst <jhurst@cinecert.com> | 2006-05-29 22:32:40 +0000 |
|---|---|---|
| committer | jhurst <> | 2006-05-29 22:32:40 +0000 |
| commit | 1c20f520f0ac0d44c64cc53991f12c84a416b48f (patch) | |
| tree | 0ac4a891e886d3f5198ca1033d108d6dc5de55e7 /src/MXFTypes.cpp | |
| parent | 04591a0dae1919f7ec3d740173b55dfad742fba6 (diff) | |
format string fixes
Diffstat (limited to 'src/MXFTypes.cpp')
| -rwxr-xr-x | src/MXFTypes.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MXFTypes.cpp b/src/MXFTypes.cpp index af6e6af..90d68c1 100755 --- a/src/MXFTypes.cpp +++ b/src/MXFTypes.cpp @@ -431,7 +431,7 @@ ASDCP::MXF::Timestamp::EncodeString(char* str_buf, ui32_t buf_len) const // 2004-05-01 13:20:00.000 snprintf(str_buf, buf_len, "%04hu-%02hu-%02hu %02hu:%02hu:%02hu.000", - Year, Month, Day, Hour, Minute, Second, Tick); + Year, Month, Day, Hour, Minute, Second); return str_buf; } |
