From c50233267a6619f3c91a9493aada585696bac84b Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Mon, 13 Oct 2008 00:03:46 +0200 Subject: [PATCH] mp3_afh.c: Fix compilation on Mac OS 10.5. uint is not defined on newer Mac OS X. --- mp3_afh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mp3_afh.c b/mp3_afh.c index ca644160..b809e8b3 100644 --- a/mp3_afh.c +++ b/mp3_afh.c @@ -280,7 +280,7 @@ static int frame_length(struct mp3header *header) static int compare_headers(struct mp3header *h1,struct mp3header *h2) { - if ((*(uint*)h1) == (*(uint*)h2)) + if ((*(unsigned int*)h1) == (*(unsigned int*)h2)) return 1; if ((h1->version == h2->version) && (h1->layer == h2->layer) && -- 2.39.2