summaryrefslogtreecommitdiff
path: root/src/AS_DCP.cpp
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/AS_DCP.cpp
parent04591a0dae1919f7ec3d740173b55dfad742fba6 (diff)
format string fixes
Diffstat (limited to 'src/AS_DCP.cpp')
-rwxr-xr-xsrc/AS_DCP.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AS_DCP.cpp b/src/AS_DCP.cpp
index 12765c6..10d5c66 100755
--- a/src/AS_DCP.cpp
+++ b/src/AS_DCP.cpp
@@ -36,7 +36,7 @@ const char*
ASDCP::Version()
{
static char ver[16];
- snprintf(ver, 16, "%lu.%lu.%lu", VERSION_MAJOR, VERSION_APIMINOR, VERSION_IMPMINOR);
+ snprintf(ver, 16, "%u.%u.%u", VERSION_MAJOR, VERSION_APIMINOR, VERSION_IMPMINOR);
return ver;
}