From 21ab2b56c8198315118dcba5df3cfc5dfdb7956f Mon Sep 17 00:00:00 2001 From: Kubat <mael.martin31@gmail.com> Date: Sat, 16 May 2020 17:54:23 +0200 Subject: [PATCH] Compiles on gcc and clang --- inc/common/queue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/common/queue.h b/inc/common/queue.h index fc3809ae..5d5e5115 100644 --- a/inc/common/queue.h +++ b/inc/common/queue.h @@ -7,7 +7,7 @@ enum lkt_event_type { lkt_event_null = 0, /* NULL */ lkt_event_play_pos = (1 << 1), /* size_t */ lkt_event_play_file = (1 << 2), /* const char* */ -} type; +}; #define lkt_event_play (lkt_event_play_pos | lkt_event_play_file) -- GitLab