diff options
author | Sven Hesse | 2007-11-18 22:22:38 +0000 |
---|---|---|
committer | Sven Hesse | 2007-11-18 22:22:38 +0000 |
commit | 40a5f8028a861d64540ffe98a20395101b781a33 (patch) | |
tree | ae8a636f0ee3f4f64daf61c0ccc1eafa966d156c /engines | |
parent | 28289fb694b1766a672bfc77f01e0cc3e88723de (diff) | |
download | scummvm-rg350-40a5f8028a861d64540ffe98a20395101b781a33.tar.gz scummvm-rg350-40a5f8028a861d64540ffe98a20395101b781a33.tar.bz2 scummvm-rg350-40a5f8028a861d64540ffe98a20395101b781a33.zip |
Muting the compiler :P
svn-id: r29563
Diffstat (limited to 'engines')
-rw-r--r-- | engines/parallaction/exec_ns.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/parallaction/exec_ns.cpp b/engines/parallaction/exec_ns.cpp index 33bc970fd0..c0d75133f7 100644 --- a/engines/parallaction/exec_ns.cpp +++ b/engines/parallaction/exec_ns.cpp @@ -849,7 +849,7 @@ void Parallaction_ns::drawLabel() { if (_deletingLabel) return; - debugC(9, kDebugExec, "jobDisplayLabel (%p)", _label); + debugC(9, kDebugExec, "jobDisplayLabel (%p)", (void *) _label); _gfx->drawLabel(*_label); @@ -863,7 +863,7 @@ void Parallaction_ns::eraseLabel() { if (!_label) return; - debugC(9, kDebugExec, "jobEraseLabel (%p)", _label); + debugC(9, kDebugExec, "jobEraseLabel (%p)", (void *) _label); int16 _si, _di; |