diff options
author | Paweł Kołodziejski | 2002-08-08 06:49:44 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2002-08-08 06:49:44 +0000 |
commit | cdf61fdf469d4c6e1c2fd6ecbf7e1238c13b5edb (patch) | |
tree | e1c1cdad96105e5d047a5a955c121c51bb89410f | |
parent | 5a685f56581ff0a34d6309e920a82f62e0e31f83 (diff) | |
download | scummvm-rg350-cdf61fdf469d4c6e1c2fd6ecbf7e1238c13b5edb.tar.gz scummvm-rg350-cdf61fdf469d4c6e1c2fd6ecbf7e1238c13b5edb.tar.bz2 scummvm-rg350-cdf61fdf469d4c6e1c2fd6ecbf7e1238c13b5edb.zip |
fixed warning
svn-id: r4716
-rw-r--r-- | bundle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bundle.cpp b/bundle.cpp index 580d902138..8b1e9c8d99 100644 --- a/bundle.cpp +++ b/bundle.cpp @@ -636,7 +636,7 @@ int32 Bundle::decompressCodec(int32 codec, byte * comp_input, byte * comp_output break; default: - printf("Bundle: Unknown codec %d!\n", codec); + printf("Bundle: Unknown codec %d!\n", (int)codec); output_size = 0; break; } |