From a3fa600a4d008022f38693e91bda5b5282fc1e95 Mon Sep 17 00:00:00 2001 From: tth Date: Thu, 10 Feb 2022 18:51:17 +0100 Subject: [PATCH] %ld --- SoundBrotching/support.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SoundBrotching/support.c b/SoundBrotching/support.c index b152e03..eebb15b 100644 --- a/SoundBrotching/support.c +++ b/SoundBrotching/support.c @@ -17,7 +17,7 @@ fprintf(stderr, " +-- sf info [%s] %p\n", text, psf); fprintf(stderr, " | samplerate %d\n", psf->samplerate); fprintf(stderr, " | channels %d\n", psf->channels); -fprintf(stderr, " | frames %d\n", psf->frames); +fprintf(stderr, " | frames %ld\n", psf->frames); return 0; }