From fe18fd82266a0ff1f744d3ae287dc312e09549fa Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Tue, 9 May 2017 20:47:43 +0100 Subject: trivial: Fix a -Wpointer-sign warning --- libappstream-glib/as-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libappstream-glib/as-utils.c b/libappstream-glib/as-utils.c index 6303ac3..682d7d0 100644 --- a/libappstream-glib/as-utils.c +++ b/libappstream-glib/as-utils.c @@ -1554,7 +1554,7 @@ as_utils_guid_from_string (const gchar *str) if (str == NULL) return NULL; return as_utils_guid_from_data ("6ba7b810-9dad-11d1-80b4-00c04fd430c8", - str, strlen (str), NULL); + (const guint8 *) str, strlen (str), NULL); } /** -- cgit v1.2.1