diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2010-04-30 16:19:07 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2010-04-30 16:19:07 +0100 |
commit | 8b96c00668529c498cb6946fdd18f6481e9ceff1 (patch) | |
tree | 30365452b9a9afc3ee9dd6af9145e5cc253286d5 /telepathy-glib/channel-request.c | |
parent | 88e91939bf941e4566708f3137404f5048ca04d2 (diff) | |
download | telepathy-glib-8b96c00668529c498cb6946fdd18f6481e9ceff1.tar.gz |
Use macros WARNING(), etc., consistently (within the library)
Diffstat (limited to 'telepathy-glib/channel-request.c')
-rw-r--r-- | telepathy-glib/channel-request.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/telepathy-glib/channel-request.c b/telepathy-glib/channel-request.c index 1ff1924b0..7b421c4e7 100644 --- a/telepathy-glib/channel-request.c +++ b/telepathy-glib/channel-request.c @@ -146,7 +146,7 @@ tp_channel_request_constructed (GObject *object) if (sc == NULL) { - g_critical ("Couldn't connect to Failed: %s", error->message); + CRITICAL ("Couldn't connect to Failed: %s", error->message); g_error_free (error); g_assert_not_reached (); return; @@ -157,7 +157,7 @@ tp_channel_request_constructed (GObject *object) if (sc == NULL) { - g_critical ("Couldn't connect to Succeeded: %s", error->message); + CRITICAL ("Couldn't connect to Succeeded: %s", error->message); g_error_free (error); g_assert_not_reached (); return; |