summaryrefslogtreecommitdiffstats
path: root/src/radio-settings.c
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2010-02-08 11:54:03 -0600
committerDenis Kenzior <denkenz@gmail.com>2010-02-08 11:54:03 -0600
commit87ca1b0c8f4c5b441eb3209b2b0c867870596882 (patch)
tree1a0a79a975bd19f41768558b93af91c5e326d896 /src/radio-settings.c
parentc02dc9c68b47f93793ec9699069d0a77bcac3e12 (diff)
downloadofono-87ca1b0c8f4c5b441eb3209b2b0c867870596882.tar.bz2
Fix: Don't use ofono_debug directly in the core
Use DBG macro which is integrated with the new debug framework.
Diffstat (limited to 'src/radio-settings.c')
-rw-r--r--src/radio-settings.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radio-settings.c b/src/radio-settings.c
index 68fa2a49..d47c1162 100644
--- a/src/radio-settings.c
+++ b/src/radio-settings.c
@@ -134,7 +134,7 @@ static void radio_mode_set_callback(const struct ofono_error *error, void *data)
DBusMessage *reply;
if (error->type != OFONO_ERROR_TYPE_NO_ERROR) {
- ofono_debug("Error setting radio access mode");
+ DBG("Error setting radio access mode");
rs->pending_mode = rs->mode;
reply = __ofono_error_failed(rs->pending);
__ofono_dbus_pending_reply(&rs->pending, reply);
@@ -155,7 +155,7 @@ static void radio_rat_mode_query_callback(const struct ofono_error *error,
DBusMessage *reply;
if (error->type != OFONO_ERROR_TYPE_NO_ERROR) {
- ofono_debug("Error during radio access mode query");
+ DBG("Error during radio access mode query");
reply = __ofono_error_failed(rs->pending);
__ofono_dbus_pending_reply(&rs->pending, reply);
return;