We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddc0337 commit 5aacfe7Copy full SHA for 5aacfe7
Makefile
@@ -2,7 +2,7 @@ include mk/common.mk
2
include mk/check-libs.mk
3
4
CC ?= gcc
5
-CFLAGS := -O2 -g -Wall -Wextra -std=c11
+CFLAGS := -O2 -g -Wall -Wextra
6
CFLAGS += -include common.h
7
8
# clock frequency
virtio-snd.c
@@ -1,4 +1,3 @@
1
-#include <stdatomic.h>
#include <stdio.h>
#include <string.h>
@@ -229,7 +228,7 @@ static int vsnd_dev_cnt = 0;
229
228
230
static struct CNFADriver *audio_host = NULL;
231
232
-static bool _Atomic guest_playing = false;
+static bool guest_playing = false;
233
234
static void virtio_snd_set_fail(virtio_snd_state_t *vsnd)
235
{
0 commit comments