summaryrefslogtreecommitdiff
path: root/src/shell-app-system.c
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2013-11-03 16:19:35 -0500
committerJasper St. Pierre <jstpierre@mecheye.net>2013-11-03 16:19:53 -0500
commit78343f483749c3637f873678bbe80ce04c39ed4f (patch)
treee6e3efd1aeb6d238ba399f2c8ca68d85be5ddd34 /src/shell-app-system.c
parenta5619bc0a3f67fc52c98d4fbc8368193338881bd (diff)
app-system: Fix bad code
I had this locally, but forgot to amend before pushing apparently
Diffstat (limited to 'src/shell-app-system.c')
-rw-r--r--src/shell-app-system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell-app-system.c b/src/shell-app-system.c
index cc9f8bd7..70bcb862 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, (char *) shell_app_get_id (id), app);
+ g_hash_table_insert (priv->id_to_app, (char *) shell_app_get_id (app), app);
return app;
}