From 5784ca9bcafddb39135c69e16f2c900c09003ae6 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 13 Jun 2006 14:10:47 +0200 Subject: [PATCH] mciseq: Don't use sizeof in traces to avoid printf format warnings. --- dlls/mciseq/mcimidi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/mciseq/mcimidi.c b/dlls/mciseq/mcimidi.c index fcf30e8f7c7..e7c215c3384 100644 --- a/dlls/mciseq/mcimidi.c +++ b/dlls/mciseq/mcimidi.c @@ -400,7 +400,7 @@ static DWORD MIDI_mciReadMTrk(WINE_MCIMIDI* wmm, MCI_MIDITRACK* mmt) len = mmt->wEventLength - HIWORD(mmt->dwEventData); if (len >= sizeof(buf)) { - WARN("Buffer for text is too small (%d bytes, when %u are needed)\n", sizeof(buf) - 1, len); + WARN("Buffer for text is too small (%u are needed)\n", len); len = sizeof(buf) - 1; } if (mmioRead(wmm->hFile, (HPSTR)buf, len) == len) { @@ -1049,7 +1049,7 @@ static DWORD MIDI_mciPlay(UINT wDevID, DWORD dwFlags, LPMCI_PLAY_PARMS lpParms) WORD idx = HIBYTE(LOWORD(mmt->dwEventData)); if (len >= sizeof(buf)) { - WARN("Buffer for text is too small (%d bytes, when %u are needed)\n", sizeof(buf) - 1, len); + WARN("Buffer for text is too small (%u are needed)\n", len); len = sizeof(buf) - 1; } if (mmioRead(wmm->hFile, (HPSTR)buf, len) == len) { -- 2.11.4.GIT