From 4ca9022358cf84db98c550296ae969bceab14fa1 Mon Sep 17 00:00:00 2001 From: Aki Niemi Date: Wed, 22 Dec 2010 17:47:11 +0200 Subject: gisi: Minor style fixes --- gisi/modem.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'gisi/modem.c') diff --git a/gisi/modem.c b/gisi/modem.c index 50c75a6a..ff06cf22 100644 --- a/gisi/modem.c +++ b/gisi/modem.c @@ -152,7 +152,8 @@ static void pending_dispatch(GIsiPending *pend, GIsiMessage *msg) ISIDBG(modem, "%s %s to %p [res=0x%02X, id=0x%02X, utid=0x%02X]", g_isi_msg_strerror(msg), pend_type_to_str(pend->type), pend, - g_isi_msg_resource(msg), g_isi_msg_id(msg), g_isi_msg_utid(msg)); + g_isi_msg_resource(msg), g_isi_msg_id(msg), + g_isi_msg_utid(msg)); pend->notify(msg, pend->data); } @@ -185,7 +186,8 @@ static void service_dispatch(GIsiServiceMux *mux, GIsiMessage *msg, * Some of these may be synthesized, but nevertheless need to * be removed. */ - if (pend->type < GISI_MESSAGE_TYPE_RESP && pend->msgid == msgid) { + if (pend->type < GISI_MESSAGE_TYPE_RESP + && pend->msgid == msgid) { pending_dispatch(pend, msg); @@ -725,7 +727,8 @@ GIsiPending *g_isi_request_vsendto(GIsiModem *modem, struct sockaddr_pn *dst, mux->pending = g_slist_prepend(mux->pending, resp); if (timeout > 0) - resp->timeout = g_timeout_add_seconds(timeout, resp_timeout, resp); + resp->timeout = g_timeout_add_seconds(timeout, resp_timeout, + resp); mux->last_utid = resp->utid; return resp; -- cgit v1.2.3