From 93928654345994ae4b6d6d8e83c946a1075d5db9 Mon Sep 17 00:00:00 2001 From: Adrian Knoth Date: Thu, 18 Sep 2014 18:33:48 +0200 Subject: [PATCH] Fix FTBFS with clang Forwarded from http://bugs.debian.org/757820 --- drivers/alsa/memops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/alsa/memops.c b/drivers/alsa/memops.c index 3df7b193..090d7f4b 100644 --- a/drivers/alsa/memops.c +++ b/drivers/alsa/memops.c @@ -163,7 +163,7 @@ * less random than rand(), but good enough and 10x faster */ -inline unsigned int fast_rand() { +static inline unsigned int fast_rand() { static unsigned int seed = 22222; seed = (seed * 96314165) + 907633515;