diff options
author | Rémi Denis-Courmont <remi.denis-courmont@nokia.com> | 2010-11-25 12:51:03 +0200 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2010-11-26 13:50:15 -0600 |
commit | e7c4442c6966102c382e7059f1b847c66e8c8cbb (patch) | |
tree | 4268efaeedf46a8900197ea60adb31155999bc05 | |
parent | 1578c0e2f466a1b89105a957220a6b357227a3b3 (diff) | |
download | ofono-e7c4442c6966102c382e7059f1b847c66e8c8cbb.tar.bz2 |
core: Remove stray newlines in messages sent to log
-rw-r--r-- | src/gprs.c | 2 | ||||
-rw-r--r-- | src/sim.c | 2 | ||||
-rw-r--r-- | src/voicecall.c | 4 |
3 files changed, 4 insertions, 4 deletions
@@ -1730,7 +1730,7 @@ static DBusMessage *gprs_remove_context(DBusConnection *conn, storage_sync(gprs->imsi, SETTINGS_STORE, gprs->settings); } - DBG("Unregistering context: %s\n", ctx->path); + DBG("Unregistering context: %s", ctx->path); context_dbus_unregister(ctx); gprs->contexts = g_slist_remove(gprs->contexts, ctx); @@ -1097,7 +1097,7 @@ static void sim_sdn_read_cb(int ok, int length, int record, if (sim->service_numbers && g_slist_find_custom(sim->service_numbers, alpha, service_number_compare)) { - ofono_error("Duplicate EFsdn entries for `%s'\n", + ofono_error("Duplicate EFsdn entries for `%s'", alpha); g_free(alpha); diff --git a/src/voicecall.c b/src/voicecall.c index 52baec3a..a91f14ff 100644 --- a/src/voicecall.c +++ b/src/voicecall.c @@ -1825,7 +1825,7 @@ void ofono_voicecall_notify(struct ofono_voicecall *vc, call_compare_by_id); if (l) { - DBG("Found call with id: %d\n", call->id); + DBG("Found call with id: %d", call->id); voicecall_set_call_status(l->data, call->status); voicecall_set_call_lineid(l->data, &call->phone_number, call->clip_validity); @@ -1833,7 +1833,7 @@ void ofono_voicecall_notify(struct ofono_voicecall *vc, return; } - DBG("Did not find a call with id: %d\n", call->id); + DBG("Did not find a call with id: %d", call->id); __ofono_modem_callid_hold(modem, call->id); |