43 lines
1.1 KiB
Diff
43 lines
1.1 KiB
Diff
|
From c0a708180fa22133940c4bc50fbc627801f188eb Mon Sep 17 00:00:00 2001
|
||
|
From: Takashi Iwai <tiwai@suse.de>
|
||
|
Date: Fri, 21 Nov 2014 15:20:48 +0100
|
||
|
Subject: [PATCH 57/60] mixer: Fix inclusion of config.h
|
||
|
|
||
|
config.h wasn't read or read too late in some files in src/mixer.
|
||
|
|
||
|
Signed-off-by: Takashi Iwai <tiwai@suse.de>
|
||
|
---
|
||
|
src/mixer/simple.c | 1 +
|
||
|
src/mixer/simple_none.c | 2 +-
|
||
|
2 files changed, 2 insertions(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/mixer/simple.c b/src/mixer/simple.c
|
||
|
index ec22a9c7d237..fd9ba93ee791 100644
|
||
|
--- a/src/mixer/simple.c
|
||
|
+++ b/src/mixer/simple.c
|
||
|
@@ -36,6 +36,7 @@
|
||
|
#include <fcntl.h>
|
||
|
#include <sys/ioctl.h>
|
||
|
#include <math.h>
|
||
|
+#include "config.h"
|
||
|
#include "mixer_local.h"
|
||
|
#include "mixer_simple.h"
|
||
|
|
||
|
diff --git a/src/mixer/simple_none.c b/src/mixer/simple_none.c
|
||
|
index 1c2774acbc35..4e556604d6c3 100644
|
||
|
--- a/src/mixer/simple_none.c
|
||
|
+++ b/src/mixer/simple_none.c
|
||
|
@@ -39,8 +39,8 @@
|
||
|
#include <math.h>
|
||
|
#include <limits.h>
|
||
|
#include <alsa/asoundlib.h>
|
||
|
-#include "mixer_simple.h"
|
||
|
#include "config.h"
|
||
|
+#include "mixer_simple.h"
|
||
|
|
||
|
#ifndef DOC_HIDDEN
|
||
|
|
||
|
--
|
||
|
2.1.3
|
||
|
|