From 6a6ef6e652f41b261b923c1868420b38df35a0e4 Mon Sep 17 00:00:00 2001 From: OBattler Date: Mon, 15 Dec 2025 11:23:59 +0100 Subject: [PATCH] 86box.c: Fix two static variable declarations, fixes warnings when compiled with CLang. --- src/86box.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/86box.c b/src/86box.c index 67853bf7d..ad79e391b 100644 --- a/src/86box.c +++ b/src/86box.c @@ -344,8 +344,8 @@ __thread int is_cpu_thread = 0; static wchar_t mouse_msg[3][200]; -static volatile ATOMIC_INT do_pause_ack = 0; -static volatile ATOMIC_INT pause_ack = 0; +static ATOMIC_INT do_pause_ack = 0; +static ATOMIC_INT pause_ack = 0; #define LOG_SIZE_BUFFER 8192 /* Log size buffer */