From 7d417f8406b8fa32a25659120738d22be6a1b482 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Mon, 16 Nov 2020 17:17:21 +0000 Subject: [PATCH] gresource: Fix a pointer mismatch with an atomic load This squashes a warning when compiling with Clang. Signed-off-by: Philip Withnall --- gio/gresource.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/gresource.c b/gio/gresource.c index 79a49d33d..b495d12ac 100644 --- a/gio/gresource.c +++ b/gio/gresource.c @@ -1398,7 +1398,7 @@ register_lazy_static_resources (void) void g_static_resource_init (GStaticResource *static_resource) { - gpointer next; + GStaticResource *next; do {