From a5619bc0a3f67fc52c98d4fbc8368193338881bd Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sun, 3 Nov 2013 12:50:21 -0500 Subject: [PATCH] app-system: Fix const warning --- src/shell-app-system.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell-app-system.c b/src/shell-app-system.c index 56636fffd..cc9f8bd7a 100644 --- a/src/shell-app-system.c +++ b/src/shell-app-system.c @@ -141,7 +141,7 @@ shell_app_system_lookup_app (ShellAppSystem *self, return NULL; app = _shell_app_new (info); - g_hash_table_insert (priv->id_to_app, shell_app_get_id (id), app); + g_hash_table_insert (priv->id_to_app, (char *) shell_app_get_id (id), app); return app; }