From e6799bd001d8a99ea6d4cf47883b6b6a0b064362 Mon Sep 17 00:00:00 2001 From: frueauf Date: Tue, 12 May 1998 11:30:02 +0000 Subject: Fix a typo that prevented compilation in BIGENDIAN case. --- audio/splay/patches/patch-ah | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 audio/splay/patches/patch-ah (limited to 'audio/splay') diff --git a/audio/splay/patches/patch-ah b/audio/splay/patches/patch-ah new file mode 100644 index 00000000000..5ca9133736d --- /dev/null +++ b/audio/splay/patches/patch-ah @@ -0,0 +1,11 @@ +--- mpegsound/mpeglayer3.cc-orig Sat May 24 11:34:12 1997 ++++ mpegsound/mpeglayer3.cc Tue May 12 13:10:28 1998 +@@ -40,7 +40,7 @@ + a=(((unsigned char)buffer[offset])<<8) | ((unsigned char)buffer[offset+1]); + } + #else +- a=((unsigned short *)(buffer+((bixindex>>3)&(WINDOWSIZE-1)))); ++ a=((unsigned short *)(buffer+((bitindex>>3)&(WINDOWSIZE-1)))); + #endif + + a<<=(bitindex&7); -- cgit v1.2.3