~cjcurran/indicator-sound/sigabrt

« back to all changes in this revision

Viewing changes to src/sound-service-dbus.c

  • Committer: Conor Curran
  • Date: 2011-03-25 11:55:49 UTC
  • Revision ID: conor.curran@canonical.com-20110325115549-62crun4gwps94g8f
more visibility on possible errors

Show diffs side-by-side

added added

removed removed

Lines of Context:
239
239
 
240
240
  if (priv->connection == NULL ||
241
241
      g_dbus_connection_is_closed (priv->connection) == TRUE){
242
 
    g_critical ("sound_service_dbus_update_sound_state - connection no good !!");
 
242
    g_critical ("sound_service_dbus_update_sound_state - connection is %s !!",
 
243
                priv->connection == NULL? "NULL" : "closed");
243
244
    return;
244
245
  }
245
246