diff options
author | Vinicius Costa Gomes <vinicius.gomes@openbossa.org> | 2010-08-02 17:50:17 -0300 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@nokia.com> | 2010-08-09 18:06:48 -0400 |
commit | 1e1434c1b796485a649133266335274eb0afd226 (patch) | |
tree | 0beca6b1ccbb483992e01191078dd8e0f16f521f | |
parent | ee2b84817638da608b1027c3b9790615423aceda (diff) | |
download | bluez-1e1434c1b796485a649133266335274eb0afd226.tar.gz bluez-1e1434c1b796485a649133266335274eb0afd226.tar.xz bluez-1e1434c1b796485a649133266335274eb0afd226.zip |
Fix coding style issues
Some lines were passing the 79 columns limit.
-rw-r--r-- | attrib/client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/attrib/client.c b/attrib/client.c index d49f869a..f0fe5e29 100644 --- a/attrib/client.c +++ b/attrib/client.c @@ -388,8 +388,8 @@ static char *primary_list_to_string(GSList *primary_list) bt_free(uuid128); - snprintf(service, sizeof(service), "%04X#%04X#%s ", primary->start, - primary->end, uuidstr); + snprintf(service, sizeof(service), "%04X#%04X#%s ", + primary->start, primary->end, uuidstr); services = g_string_append(services, service); } @@ -420,7 +420,7 @@ static GSList *string_to_primary_list(char *gatt_path, const char *str) prim->start); ret = sscanf(services[i], "%04hX#%04hX#%s", &prim->start, - &prim->end, uuidstr); + &prim->end, uuidstr); if (ret < 3) continue; |