diff options
| author | jhurst <jhurst@cinecert.com> | 2006-05-30 07:11:19 +0000 |
|---|---|---|
| committer | jhurst <> | 2006-05-30 07:11:19 +0000 |
| commit | 5e91ca52284adc91a42d6fe389c9cc70a33126a6 (patch) | |
| tree | 4e525a17cec341c2e1dc323c14d9cdd0d9ec98f3 /src/KM_util.cpp | |
| parent | 1c20f520f0ac0d44c64cc53991f12c84a416b48f (diff) | |
more printf format fixes
Diffstat (limited to 'src/KM_util.cpp')
| -rwxr-xr-x | src/KM_util.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/KM_util.cpp b/src/KM_util.cpp index e9157ec..a07d33e 100755 --- a/src/KM_util.cpp +++ b/src/KM_util.cpp @@ -532,14 +532,14 @@ Kumu::write_BER(byte_t* buf, ui64_t val, ui32_t ber_len) { // sanity check BER length if ( ber_len > 9 ) { - DefaultLogSink().Error("BER size %lu exceeds maximum size of 9\n", ber_len); + DefaultLogSink().Error("BER size %u exceeds maximum size of 9\n", ber_len); return false; } if ( val & ber_masks[ber_len - 1] ) { ui64Printer tmp_i(val); - DefaultLogSink().Error("BER size %lu too small for value %s\n", tmp_i.c_str()); + DefaultLogSink().Error("BER size %u too small for value %s\n", tmp_i.c_str()); return false; } } @@ -825,7 +825,7 @@ Kumu::Timestamp::DecodeString(const char* datestr) ui32_t TZ_mm = atoi(datestr + 23); if ( TZ_mm != 0 ) - DefaultLogSink().Error("Ignoring sub-hours timezone offset: %lu\n", TZ_mm); + DefaultLogSink().Error("Ignoring sub-hours timezone offset: %u\n", TZ_mm); if ( TZ_hh > 12 ) DefaultLogSink().Error("Ignoring large timezone offset: %s\n", (datestr+19)); |
