]> git.pld-linux.org Git - packages/ac3dec.git/blob - ac3dec-fixbuild.patch
- tabs in preamble
[packages/ac3dec.git] / ac3dec-fixbuild.patch
1 diff -ur ac3dec-0.6.1.orig/libac3/bitstream.c ac3dec-0.6.1/libac3/bitstream.c
2 --- ac3dec-0.6.1.orig/libac3/bitstream.c        2000-03-30 02:51:24.000000000 +0200
3 +++ ac3dec-0.6.1/libac3/bitstream.c     2004-08-10 20:45:16.000000000 +0200
4 @@ -90,7 +91,8 @@
5  static inline void
6  bitstream_fill_current()
7  {
8 -       current_word = *((uint_32*)buffer_start)++;
9 +       uint_32* temp=(uint_32*)buffer_start;
10 +       current_word = *(temp)++;
11         current_word = swab32(current_word);
12  }
13  
This page took 0.078977 seconds and 3 git commands to generate.