diff options
author | Ori Avtalion | 2016-01-07 14:52:11 +0200 |
---|---|---|
committer | Ori Avtalion | 2016-01-07 14:55:32 +0200 |
commit | d8045c67273faedd806c0e0f11801df2bb9ce4c6 (patch) | |
tree | b3cb7dc4d71236d12fd26501d00aa4b02991c2e4 /engines/cine | |
parent | afd4b82a8ad760abee3224e618e951da72268d51 (diff) | |
download | scummvm-rg350-d8045c67273faedd806c0e0f11801df2bb9ce4c6.tar.gz scummvm-rg350-d8045c67273faedd806c0e0f11801df2bb9ce4c6.tar.bz2 scummvm-rg350-d8045c67273faedd806c0e0f11801df2bb9ce4c6.zip |
JANITORIAL: Fix clang printf warnings
Diffstat (limited to 'engines/cine')
-rw-r--r-- | engines/cine/various.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cine/various.cpp b/engines/cine/various.cpp index cd877a3295..74dee1f541 100644 --- a/engines/cine/various.cpp +++ b/engines/cine/various.cpp @@ -1492,7 +1492,7 @@ uint16 addAni(uint16 param1, uint16 objIdx, const int8 *ptr, SeqListElement &ele int16 di; debug(5, "addAni: param1 = %d, objIdx = %d, ptr = %p, element.var8 = %d, element.var14 = %d param3 = %d", - param1, objIdx, ptr, element.var8, element.var14, param3); + param1, objIdx, (const void *)ptr, element.var8, element.var14, param3); // In the original an error string is set and 0 is returned if the following doesn't hold assert(ptr); |