diff options
author | Aki Niemi <aki.niemi@nokia.com> | 2009-08-24 13:34:53 +0300 |
---|---|---|
committer | Aki Niemi <aki.niemi@nokia.com> | 2009-08-24 13:34:53 +0300 |
commit | 03d4dad98d623fd319eaf8e6aa38b1099cbb9cd1 (patch) | |
tree | 28dd5c37453006903274bf4b590e12226efe4b57 | |
parent | bc71ac101f53e82f2ababfd72ecfabe6055dcf10 (diff) | |
download | ofono-03d4dad98d623fd319eaf8e6aa38b1099cbb9cd1.tar.bz2 |
Fix build warning
-rw-r--r-- | plugins/generic_at.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/generic_at.c b/plugins/generic_at.c index 7bcc69d4..e5d7a428 100644 --- a/plugins/generic_at.c +++ b/plugins/generic_at.c @@ -266,7 +266,7 @@ static void connect_destroy(gpointer user) static void at_debug(const char *str, void *data) { - ofono_debug(str); + DBG("%s", str); } static gboolean connect_cb(GIOChannel *io, GIOCondition cond, gpointer user) |