summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2017-05-09 20:47:43 +0100
committerRichard Hughes <richard@hughsie.com>2017-05-09 20:48:50 +0100
commitfe18fd82266a0ff1f744d3ae287dc312e09549fa (patch)
tree94317d24faf0b90c7ad0d7a694b4e253aad4c42d
parentd806f10d9e077a1bcc2801f43418b9bf24b77034 (diff)
downloadappstream-glib-0_6_X.tar.gz
trivial: Fix a -Wpointer-sign warning0_6_X
-rw-r--r--libappstream-glib/as-utils.c2
1 files changed, 1 insertions, 1 deletions
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);
}
/**