From 9151ff2636642253e6bdd5fb496a9bf1d18b90b4 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sun, 25 May 2003 10:14:21 +0000 Subject: fixed format string svn-id: r7931 --- simon/midi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simon/midi.cpp b/simon/midi.cpp index 663769ec55..42f86f627d 100644 --- a/simon/midi.cpp +++ b/simon/midi.cpp @@ -463,7 +463,7 @@ void MidiPlayer::loadS1D (File *in, bool sfx) { uint32 size = in->readByte() | (in->readByte() << 8); if (size != in->size() - 2) { - printf ("ERROR! Size mismatch in simon1demo MUS file (%ld versus reported %d)\n", (long) in->size() - 2, (long) size); + printf ("ERROR! Size mismatch in simon1demo MUS file (%ld versus reported %ld)\n", (long) in->size() - 2, (long) size); _system->unlock_mutex (_mutex); return; } -- cgit v1.2.3