diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2010-05-10 08:39:31 +0200 |
---|---|---|
committer | Lukas Zeller <luz@synthesis.ch> | 2010-05-13 14:07:00 +0200 |
commit | 36e2bc9cafe1cb6d19a4c3b37782a51fa969227b (patch) | |
tree | 58ee9907231debe30859703bcebc2e44d92bc628 | |
parent | a8e6aac2bc2f0a4ed6f85e84aada17737553c9fb (diff) |
fixed compiler warning on 64 bit: printf %llX size mismatch
-rwxr-xr-x | src/sysync/rrules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysync/rrules.cpp b/src/sysync/rrules.cpp index b9ef0f7..2f68fb9 100755 --- a/src/sysync/rrules.cpp +++ b/src/sysync/rrules.cpp @@ -484,7 +484,7 @@ bool internalToRRULE2( { LOGDEBUGPRINTFX(aLogP,DBG_EXOTIC+DBG_GEN,( "InternalToRRULE2(): expanding freq=%c, freqmod=%c, interval=%hd, firstmask=%llX, lastmask=%llX", - freq, freqmod, interval, firstmask, lastmask + freq, freqmod, interval, (long long)firstmask, (long long)lastmask )); // Now do the conversion |