diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-03-25 11:34:52 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-03-25 11:34:52 +0000 |
commit | d6d917b02d2eff0855446d35da278a6f701a05c5 (patch) | |
tree | 527a03173484964a699ef580c637e6f518bb1e49 /src | |
parent | 2053d2450e61d17f27ab47f67624b14dd4829589 (diff) | |
download | ayatana-indicator-sound-d6d917b02d2eff0855446d35da278a6f701a05c5.tar.gz ayatana-indicator-sound-d6d917b02d2eff0855446d35da278a6f701a05c5.tar.bz2 ayatana-indicator-sound-d6d917b02d2eff0855446d35da278a6f701a05c5.zip |
g_critical not a g_error
Diffstat (limited to 'src')
-rw-r--r-- | src/sound-service-dbus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sound-service-dbus.c b/src/sound-service-dbus.c index 2f7e32c..27de893 100644 --- a/src/sound-service-dbus.c +++ b/src/sound-service-dbus.c @@ -239,7 +239,7 @@ sound_service_dbus_update_sound_state (SoundServiceDbus* self, if (priv->connection == NULL || g_dbus_connection_is_closed (priv->connection) == TRUE){ - g_warning ("sound_service_dbus_update_sound_state - connection no good !!"); + g_critical ("sound_service_dbus_update_sound_state - connection no good !!"); return; } @@ -252,7 +252,7 @@ sound_service_dbus_update_sound_state (SoundServiceDbus* self, v_output, &error ); if (error != NULL) { - g_error("Unable to emit signal because : %s", error->message); + g_critical ("Unable to emit signal because : %s", error->message); g_error_free(error); } } |