aboutsummaryrefslogtreecommitdiff
path: root/src/indicator-sound.c
diff options
context:
space:
mode:
authorKen VanDine <ken.vandine@canonical.com>2012-03-16 13:50:43 -0400
committerKen VanDine <ken.vandine@canonical.com>2012-03-16 13:50:43 -0400
commit8e8a06aa8829abe57acf68e252577286bc15ef74 (patch)
tree36bbeb79aed2e89822c78bf3657c86437ad9c449 /src/indicator-sound.c
parent068f00cdfe7512aab9054af728e361226dcc9511 (diff)
downloadayatana-indicator-sound-8e8a06aa8829abe57acf68e252577286bc15ef74.tar.gz
ayatana-indicator-sound-8e8a06aa8829abe57acf68e252577286bc15ef74.tar.bz2
ayatana-indicator-sound-8e8a06aa8829abe57acf68e252577286bc15ef74.zip
Import upstream version 0.8.4.0
Diffstat (limited to 'src/indicator-sound.c')
-rw-r--r--src/indicator-sound.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/indicator-sound.c b/src/indicator-sound.c
index 243e759..272c8da 100644
--- a/src/indicator-sound.c
+++ b/src/indicator-sound.c
@@ -299,8 +299,8 @@ connection_changed (IndicatorServiceManager * sm,
node_info = g_dbus_node_info_new_for_xml ( _sound_service,
&error );
if (error != NULL) {
- g_warning( "Failed to get create interface info from xml: %s",
- error->message );
+ g_critical ( "Failed to get create interface info from xml: %s",
+ error->message );
g_error_free(error);
return;
}
@@ -310,7 +310,7 @@ connection_changed (IndicatorServiceManager * sm,
interface_info = g_dbus_node_info_lookup_interface (node_info,
INDICATOR_SOUND_DBUS_INTERFACE);
if (interface_info == NULL) {
- g_error("Unable to find interface '" INDICATOR_SOUND_DBUS_INTERFACE "'");
+ g_critical ("Unable to find interface '" INDICATOR_SOUND_DBUS_INTERFACE "'");
}
}
@@ -339,7 +339,7 @@ static void create_connection_to_service (GObject *source_object,
priv->dbus_proxy = g_dbus_proxy_new_finish(res, &error);
if (error != NULL) {
- g_warning("Failed to get dbus proxy: %s", error->message);
+ g_critical ("Failed to get dbus proxy: %s", error->message);
g_error_free(error);
return;
}