This website works better with JavaScript.
Home
Help
Sign In
jackaudio
/
jack2
mirror of
https://github.com/jackaudio/jack2
Watch
1
Star
0
Fork
0
Code
Releases
45
Activity
Browse Source
Fix FTBFS with clang++
Forwarded from
http://bugs.debian.org/757820
tags/v1.9.11-RC1
Adrian Knoth
11 years ago
parent
a9a2ad16e1
commit
d3c8e2d8d7
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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;
}
Write
Preview
Loading…
Cancel
Save