summaryrefslogtreecommitdiff
path: root/src/MXF.h
diff options
context:
space:
mode:
authorjhurst <jhurst@cinecert.com>2006-05-29 22:32:40 +0000
committerjhurst <>2006-05-29 22:32:40 +0000
commit1c20f520f0ac0d44c64cc53991f12c84a416b48f (patch)
tree0ac4a891e886d3f5198ca1033d108d6dc5de55e7 /src/MXF.h
parent04591a0dae1919f7ec3d740173b55dfad742fba6 (diff)
format string fixes
Diffstat (limited to 'src/MXF.h')
-rwxr-xr-xsrc/MXF.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MXF.h b/src/MXF.h
index da9c498..a38b6db 100755
--- a/src/MXF.h
+++ b/src/MXF.h
@@ -64,7 +64,7 @@ namespace ASDCP
inline const char* EncodeString(char* str_buf, ui32_t buf_len) const {
Kumu::ui64Printer offset_str(ByteOffset);
- snprintf(str_buf, buf_len, "%-6lu: %s", BodySID, offset_str.c_str());
+ snprintf(str_buf, buf_len, "%-6u: %s", BodySID, offset_str.c_str());
return str_buf;
}