[gnome-shell/wip/carlosg/volatile-warnings: 6/6] hotplug-sniffer: Drop "volatile" from g_once_init_enter() sentinels
- From: Marge Bot <marge-bot src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/carlosg/volatile-warnings: 6/6] hotplug-sniffer: Drop "volatile" from g_once_init_enter() sentinels
- Date: Mon, 22 Mar 2021 11:12:26 +0000 (UTC)
commit 4dfc53cade812e3b63205620fa13e31955e72763
Author: Carlos Garnacho <carlosg gnome org>
Date: Tue Mar 16 21:44:54 2021 +0100
hotplug-sniffer: Drop "volatile" from g_once_init_enter() sentinels
As documented in g_once_init_enter(): "While @location has a volatile qualifier,
this is a historical artifact and the pointer passed to it should not be
volatile.". And effectively this now warns with modern glibc.
Drop this from our logging function.
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1770>
src/hotplug-sniffer/hotplug-sniffer.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/hotplug-sniffer/hotplug-sniffer.c b/src/hotplug-sniffer/hotplug-sniffer.c
index 7fd812ea0e..4b70ec72a0 100644
--- a/src/hotplug-sniffer/hotplug-sniffer.c
+++ b/src/hotplug-sniffer/hotplug-sniffer.c
@@ -269,7 +269,7 @@ print_debug (const gchar *format, ...)
g_autofree char *timestamp = NULL;
va_list ap;
g_autoptr (GDateTime) now = NULL;
- static volatile gsize once_init_value = 0;
+ static size_t once_init_value = 0;
static gboolean show_debug = FALSE;
static guint pid = 0;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]