diff options
author | Ted Gould <ted@gould.cx> | 2011-07-08 12:47:44 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-07-08 12:47:44 -0500 |
commit | f255dfccdfc67242dc15118c1d90b2fbf26aac27 (patch) | |
tree | 31c86bb720f9366a6b9400c680cee11ce0662ecb | |
parent | 3770d74862ff87ed4de0eac915fe71e6279f36e8 (diff) | |
download | ayatana-indicator-application-f255dfccdfc67242dc15118c1d90b2fbf26aac27.tar.gz ayatana-indicator-application-f255dfccdfc67242dc15118c1d90b2fbf26aac27.tar.bz2 ayatana-indicator-application-f255dfccdfc67242dc15118c1d90b2fbf26aac27.zip |
Fixing the signature on the startup functions.
-rw-r--r-- | src/indicator-application.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indicator-application.c b/src/indicator-application.c index dc810f4..0a0886a 100644 --- a/src/indicator-application.c +++ b/src/indicator-application.c @@ -861,7 +861,7 @@ get_applications (GObject * obj, GAsyncResult * res, gpointer user_data) } /* Get our new applications that we got in the request */ - g_variant_get(result, "(a(sisossss))", &iter); + g_variant_get(result, "(a(sisosssss))", &iter); while ((child = g_variant_iter_next_value (iter))) { get_applications_helper(self, child); g_variant_unref(child); |