Ticket #13455: uint.patch
File uint.patch, 417 bytes (added by ken@…, 17 years ago) |
---|
-
mp3tech.c
old new 279 279 } 280 280 281 281 int sameConstant(mp3header *h1, mp3header *h2) { 282 if((*(u int*)h1) == (*(uint*)h2)) return 1;282 if((*(unsigned int*)h1) == (*(unsigned int*)h2)) return 1; 283 283 284 284 if((h1->version == h2->version ) && 285 285 (h1->layer == h2->layer ) &&