app-system: Fix bad code

I had this locally, but forgot to amend before pushing apparently
This commit is contained in:
Jasper St. Pierre 2013-11-03 16:19:35 -05:00
parent a5619bc0a3
commit 78343f4837

View File

@ -141,7 +141,7 @@ shell_app_system_lookup_app (ShellAppSystem *self,
return NULL; return NULL;
app = _shell_app_new (info); 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; return app;
} }