diff options
| author | Ted Gould <ted@gould.cx> | 2011-07-22 14:23:35 -0500 |
|---|---|---|
| committer | Ted Gould <ted@gould.cx> | 2011-07-22 14:23:35 -0500 |
| commit | 6e7a1fea89846e408e643d504af293cc7d582202 (patch) | |
| tree | 31c86bb720f9366a6b9400c680cee11ce0662ecb /src/application-service-appstore.c | |
| parent | b7c636a4390588001b7a2214d2db9cef086f04e8 (diff) | |
| parent | f255dfccdfc67242dc15118c1d90b2fbf26aac27 (diff) | |
| download | ayatana-indicator-application-6e7a1fea89846e408e643d504af293cc7d582202.tar.gz ayatana-indicator-application-6e7a1fea89846e408e643d504af293cc7d582202.tar.bz2 ayatana-indicator-application-6e7a1fea89846e408e643d504af293cc7d582202.zip | |
Fixing the signal prototype
Diffstat (limited to 'src/application-service-appstore.c')
| -rw-r--r-- | src/application-service-appstore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/application-service-appstore.c b/src/application-service-appstore.c index 9cd65b4..9e1dab3 100644 --- a/src/application-service-appstore.c +++ b/src/application-service-appstore.c @@ -1276,9 +1276,9 @@ get_applications (ApplicationServiceAppstore * appstore) out = g_variant_builder_end(&builder); } else { GError * error = NULL; - out = g_variant_parse(g_variant_type_new("a(sisossss)"), "[]", NULL, NULL, &error); + out = g_variant_parse(g_variant_type_new("a(sisosssss)"), "[]", NULL, NULL, &error); if (error != NULL) { - g_warning("Unable to parse '[]' as a 'a(sisossss)': %s", error->message); + g_warning("Unable to parse '[]' as a 'a(sisosssss)': %s", error->message); out = NULL; g_error_free(error); } |
