Ticket #13455: uint.patch

File uint.patch, 417 bytes (added by ken@…, 16 years ago)

A patch to change the only "uint" references to "unsigned int"

  • mp3tech.c

    old new  
    279279}
    280280
    281281int sameConstant(mp3header *h1, mp3header *h2) {
    282     if((*(uint*)h1) == (*(uint*)h2)) return 1;
     282    if((*(unsigned int*)h1) == (*(unsigned int*)h2)) return 1;
    283283
    284284    if((h1->version       == h2->version         ) &&
    285285       (h1->layer         == h2->layer           ) &&