]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
mpdec.c: %d -> %zd conversion
authorAndre <maan@p133.(none)>
Sun, 16 Apr 2006 17:13:32 +0000 (19:13 +0200)
committerAndre <maan@p133.(none)>
Sun, 16 Apr 2006 17:13:32 +0000 (19:13 +0200)
This fixes some warnings of the form

mp3dec.c:66: warning: format '%d' expects type 'int', but argument 5 has type 'size_t'

on MacOs.

mp3dec.c

index 4599df90b6fd42f712a7203069220c45bf579ec1..764fc2665efee91301611b1a0f903f3ac1bd8090 100644 (file)
--- a/mp3dec.c
+++ b/mp3dec.c
@@ -63,7 +63,7 @@ next_frame:
        if (ret) {
                if (MAD_RECOVERABLE(pmd->stream.error) || pmd->stream.error == MAD_ERROR_BUFLEN)
                        goto out;
-               PARA_ERROR_LOG("fatal: ret = %d, loaded = %d\n", ret, fn->loaded);
+               PARA_ERROR_LOG("fatal: ret = %d, loaded = %zd\n", ret, fn->loaded);
                return -E_MAD_FRAME_DECODE;
        }
        mad_synth_frame(&pmd->synth, &pmd->frame);
@@ -82,7 +82,7 @@ next_frame:
                }
                if (fn->loaded != fn->bufsize) /* output buffer not full */
                        continue;
-               PARA_ERROR_LOG("output buffer full: %d\n", fn->loaded);
+               PARA_ERROR_LOG("output buffer full: %zd\n", fn->loaded);
                        return -E_MP3DEC_OVERRUN;
        }
        if (fn->loaded <= fn->bufsize * 4 / 5)
@@ -90,7 +90,7 @@ next_frame:
 out:
        if (pmd->stream.next_frame) { /* we still have some data */
                size_t off = pmd->stream.bufend - pmd->stream.next_frame;
-               PARA_DEBUG_LOG("converted %d, %d input bytes, %d output bytes\n",
+               PARA_DEBUG_LOG("converted %zd, %zd input bytes, %zd output bytes\n",
                        len - off, off, fn->loaded);
                return copy - off;
        }