X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=mp3_afh.c;h=f7334488113ad85922313f5273fb998df36840a6;hp=ca6441606c6efaeffa1531975387f90070dfb4ad;hb=a6cbab95272b31c55b2b41e1d3dd55743c7c774f;hpb=8fcac57c23111fb59ca793eea4bc21e6aedcfd05 diff --git a/mp3_afh.c b/mp3_afh.c index ca644160..f7334488 100644 --- a/mp3_afh.c +++ b/mp3_afh.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2008 Andre Noll + * Copyright (C) 2003-2009 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -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) &&