From 66a195bb786ff088da7fc6b2eabbdff5f3889dea Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Thu, 21 Oct 2021 12:01:33 +0100 Subject: [PATCH] gthread-win32: Remove an unnecessary volatile qualifier Signed-off-by: Philip Withnall --- glib/gthread-win32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glib/gthread-win32.c b/glib/gthread-win32.c index 79e397820..c6ba122db 100644 --- a/glib/gthread-win32.c +++ b/glib/gthread-win32.c @@ -617,7 +617,7 @@ g_thread_win32_load_library (void) { /* FIXME: Add support for UWP app */ #if !defined(G_WINAPI_ONLY_APP) - static volatile gsize _init_once = 0; + static gsize _init_once = 0; if (g_once_init_enter (&_init_once)) { kernel32_module = LoadLibraryW (L"kernel32.dll");