From 7c535b1621339fb471540c9f735a31a7f60ae3d6 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 29 May 2013 14:10:27 +0300 Subject: [PATCH] obexd: Fix coding style Respect 80 column limit --- obexd/src/manager.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/obexd/src/manager.c b/obexd/src/manager.c index f3f43cbf0..6ddee2b32 100644 --- a/obexd/src/manager.c +++ b/obexd/src/manager.c @@ -305,7 +305,8 @@ static char *target2str(const uint8_t *t) return g_strdup_printf("%02X%02X%02X%02X-%02X%02X-%02X%02X-" "%02X%02X-%02X%02X%02X%02X%02X%02X", t[0], t[1], t[2], t[3], t[4], t[5], t[6], t[7], - t[8], t[9], t[10], t[11], t[12], t[13], t[14], t[15]); + t[8], t[9], t[10], t[11], t[12], t[13], t[14], + t[15]); } static gboolean get_target(const GDBusPropertyTable *property, -- 2.47.3