diff options
author | Ted Gould <ted@gould.cx> | 2012-02-08 10:59:30 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2012-02-08 10:59:30 -0600 |
commit | 4e1deeb8bcec30c2cfe994c670695aa7d3044f49 (patch) | |
tree | 2517b12a36b7d055bef37cb982df1c3ac35cc233 /src/application-service-appstore.c | |
parent | 8a1e30e9465e2d49e6c66e372da4daea8e3dfc0c (diff) | |
parent | 3cfb188eb9e1afb0b57c503622f63c69e1568913 (diff) | |
download | ayatana-indicator-application-4e1deeb8bcec30c2cfe994c670695aa7d3044f49.tar.gz ayatana-indicator-application-4e1deeb8bcec30c2cfe994c670695aa7d3044f49.tar.bz2 ayatana-indicator-application-4e1deeb8bcec30c2cfe994c670695aa7d3044f49.zip |
Fixing useless variable setting
Diffstat (limited to 'src/application-service-appstore.c')
-rw-r--r-- | src/application-service-appstore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/application-service-appstore.c b/src/application-service-appstore.c index da5b859..e11883f 100644 --- a/src/application-service-appstore.c +++ b/src/application-service-appstore.c @@ -409,7 +409,7 @@ load_override_file (GHashTable * hash, const gchar * filename) return; } - gchar * key = keys[0]; + gchar * key; gint i; for (i = 0; (key = keys[i]) != NULL; i++) { |