Fix misspelled variable.
This commit is contained in:
parent
aea2af033f
commit
fbe24d3f5e
1 changed files with 36 additions and 0 deletions
36
audio/splay/patches/patch-ad
Normal file
36
audio/splay/patches/patch-ad
Normal file
|
@ -0,0 +1,36 @@
|
|||
*** mpegsound/mpegsound.h.orig Tue Jan 6 23:46:00 1998
|
||||
--- mpegsound/mpegsound.h Tue Jan 6 23:45:01 1998
|
||||
***************
|
||||
*** 247,253 ****
|
||||
a=(((unsigned char)buffer[offset])<<8) | ((unsigned char)buffer[offset+1]);
|
||||
}
|
||||
#else
|
||||
! a=((unsigned short *)(buffer+((bixindex>>3))));
|
||||
#endif
|
||||
|
||||
a<<=(bitindex&7);
|
||||
--- 247,253 ----
|
||||
a=(((unsigned char)buffer[offset])<<8) | ((unsigned char)buffer[offset+1]);
|
||||
}
|
||||
#else
|
||||
! a=((unsigned short *)(buffer+((bitindex>>3))));
|
||||
#endif
|
||||
|
||||
a<<=(bitindex&7);
|
||||
***************
|
||||
*** 266,272 ****
|
||||
a=(((unsigned char)buffer[offset])<<8) | ((unsigned char)buffer[offset+1]);
|
||||
}
|
||||
#else
|
||||
! a=((unsigned short *)(buffer+((bixindex>>3))));
|
||||
#endif
|
||||
|
||||
a<<=(bitindex&7);
|
||||
--- 266,272 ----
|
||||
a=(((unsigned char)buffer[offset])<<8) | ((unsigned char)buffer[offset+1]);
|
||||
}
|
||||
#else
|
||||
! a=((unsigned short *)(buffer+((bitindex>>3))));
|
||||
#endif
|
||||
|
||||
a<<=(bitindex&7);
|
Loading…
Reference in a new issue