fix clang errors
This commit is contained in:
parent
a40d7d928f
commit
d099a907f6
@ -433,7 +433,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#define CIRCLEQ_HEAD_INITIALIZER(head) \
|
#define CIRCLEQ_HEAD_INITIALIZER(head) \
|
||||||
{ CIRCLEQ_END(&head), CIRCLEQ_END(&head) }
|
{ \
|
||||||
|
CIRCLEQ_END(&head) \
|
||||||
|
, CIRCLEQ_END(&head) \
|
||||||
|
}
|
||||||
|
|
||||||
#define CIRCLEQ_ENTRY(type) \
|
#define CIRCLEQ_ENTRY(type) \
|
||||||
struct { \
|
struct { \
|
||||||
|
@ -14,7 +14,8 @@ typedef struct indexed_volume_s {
|
|||||||
char *name;
|
char *name;
|
||||||
uint32_t idx;
|
uint32_t idx;
|
||||||
int volume;
|
int volume;
|
||||||
TAILQ_ENTRY(indexed_volume_s) entries;
|
TAILQ_ENTRY(indexed_volume_s)
|
||||||
|
entries;
|
||||||
} indexed_volume_t;
|
} indexed_volume_t;
|
||||||
|
|
||||||
static pa_threaded_mainloop *main_loop = NULL;
|
static pa_threaded_mainloop *main_loop = NULL;
|
||||||
@ -23,7 +24,8 @@ static pa_mainloop_api *api = NULL;
|
|||||||
static bool context_ready = false;
|
static bool context_ready = false;
|
||||||
static bool mainloop_thread_running = false;
|
static bool mainloop_thread_running = false;
|
||||||
static uint32_t default_sink_idx = DEFAULT_SINK_INDEX;
|
static uint32_t default_sink_idx = DEFAULT_SINK_INDEX;
|
||||||
TAILQ_HEAD(tailhead, indexed_volume_s) cached_volume =
|
TAILQ_HEAD(tailhead, indexed_volume_s)
|
||||||
|
cached_volume =
|
||||||
TAILQ_HEAD_INITIALIZER(cached_volume);
|
TAILQ_HEAD_INITIALIZER(cached_volume);
|
||||||
static pthread_mutex_t pulse_mutex = PTHREAD_MUTEX_INITIALIZER;
|
static pthread_mutex_t pulse_mutex = PTHREAD_MUTEX_INITIALIZER;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user