aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2009-12-07 13:07:43 -0600
committerTed Gould <ted@gould.cx>2009-12-07 13:07:43 -0600
commit134704130d3d871c8ff5bda62e2e9501a447375a (patch)
treef42a4845e254aa2e97097d88e6d3caa4e8a714b7
parentea29a8effb3c9ebcb7d2f469add8eaff462d29c5 (diff)
downloadlibayatana-indicator-134704130d3d871c8ff5bda62e2e9501a447375a.tar.gz
libayatana-indicator-134704130d3d871c8ff5bda62e2e9501a447375a.tar.bz2
libayatana-indicator-134704130d3d871c8ff5bda62e2e9501a447375a.zip
Fixing a typo in the error message -- noticed by David Barth.
-rw-r--r--libindicator/indicator-service-manager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libindicator/indicator-service-manager.c b/libindicator/indicator-service-manager.c
index a3680c4..b4d5915 100644
--- a/libindicator/indicator-service-manager.c
+++ b/libindicator/indicator-service-manager.c
@@ -275,7 +275,7 @@ watch_cb (DBusGProxy * proxy, guint service_api_version, guint this_service_vers
}
if (this_service_version != priv->this_service_version) {
- g_warning("Service is using a API version than the manager. Expecting %d and got %d.", priv->this_service_version, this_service_version);
+ g_warning("Service is using a different API version than the manager. Expecting %d and got %d.", priv->this_service_version, this_service_version);
dbus_g_proxy_call_no_reply(priv->service_proxy, "UnWatch", G_TYPE_INVALID);
return;
}