summaryrefslogtreecommitdiff
path: root/src/asdcp-version.cpp
diff options
context:
space:
mode:
authorjhurst <jhurst@cinecert.com>2006-05-30 07:11:19 +0000
committerjhurst <>2006-05-30 07:11:19 +0000
commit5e91ca52284adc91a42d6fe389c9cc70a33126a6 (patch)
tree4e525a17cec341c2e1dc323c14d9cdd0d9ec98f3 /src/asdcp-version.cpp
parent1c20f520f0ac0d44c64cc53991f12c84a416b48f (diff)
more printf format fixes
Diffstat (limited to 'src/asdcp-version.cpp')
-rwxr-xr-xsrc/asdcp-version.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asdcp-version.cpp b/src/asdcp-version.cpp
index 148f69d..ee33480 100755
--- a/src/asdcp-version.cpp
+++ b/src/asdcp-version.cpp
@@ -36,7 +36,7 @@ using namespace ASDCP;
int
main()
{
- printf("%lu.%lu.%lu", VERSION_MAJOR, VERSION_APIMINOR, VERSION_IMPMINOR);
+ printf("%u.%u.%u", VERSION_MAJOR, VERSION_APIMINOR, VERSION_IMPMINOR);
return 0;
}