Browse Source

Fix FTBFS with clang++

Forwarded from http://bugs.debian.org/757820
tags/v1.9.11-RC1
Adrian Knoth 11 years ago
parent
commit
d3c8e2d8d7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      common/memops.c

+ 1
- 1
common/memops.c View File

@@ -198,7 +198,7 @@ static inline __m128i float_24_sse(__m128 s)
*/
static unsigned int seed = 22222;

inline unsigned int fast_rand() {
static inline unsigned int fast_rand() {
seed = (seed * 96314165) + 907633515;
return seed;
}


Loading…
Cancel
Save