client: Fix lines going beyond 80 columns
diff --git a/client/advertising.c b/client/advertising.c
index b2965ce..4517f8f 100644
--- a/client/advertising.c
+++ b/client/advertising.c
@@ -430,7 +430,8 @@
 		bt_shell_printf("Advertising object unregistered\n");
 		if (g_dbus_unregister_interface(conn, AD_PATH,
 							AD_IFACE) == FALSE)
-			bt_shell_printf("Failed to unregister advertising object\n");
+			bt_shell_printf("Failed to unregister advertising"
+					" object\n");
 		return bt_shell_noninteractive_quit(EXIT_SUCCESS);
 	} else {
 		bt_shell_printf("Failed to unregister advertisement: %s\n",
diff --git a/client/gatt.c b/client/gatt.c
index 91cfb01..8c818d8 100644
--- a/client/gatt.c
+++ b/client/gatt.c
@@ -636,7 +636,8 @@
 		return bt_shell_noninteractive_quit(EXIT_FAILURE);
 	}
 
-	bt_shell_printf("Attempting to write %s\n", g_dbus_proxy_get_path(proxy));
+	bt_shell_printf("Attempting to write %s\n",
+					g_dbus_proxy_get_path(proxy));
 }
 
 void gatt_write_attribute(GDBusProxy *proxy, const char *arg)
@@ -750,7 +751,8 @@
 		return bt_shell_noninteractive_quit(EXIT_FAILURE);
 	}
 
-	bt_shell_printf("AcquireWrite success: fd %d MTU %u\n", fd, write_io.mtu);
+	bt_shell_printf("AcquireWrite success: fd %d MTU %u\n", fd,
+								write_io.mtu);
 
 	write_io.io = pipe_io_new(fd, NULL);
 	return bt_shell_noninteractive_quit(EXIT_SUCCESS);
@@ -776,8 +778,9 @@
 
 	iface = g_dbus_proxy_get_interface(proxy);
 	if (strcmp(iface, "org.bluez.GattCharacteristic1")) {
-		bt_shell_printf("Unable to acquire write: %s not a characteristic\n",
-						g_dbus_proxy_get_path(proxy));
+		bt_shell_printf("Unable to acquire write: %s not a"
+				" characteristic\n",
+				g_dbus_proxy_get_path(proxy));
 		return bt_shell_noninteractive_quit(EXIT_FAILURE);
 	}
 
@@ -830,7 +833,8 @@
 		return bt_shell_noninteractive_quit(EXIT_FAILURE);
 	}
 
-	bt_shell_printf("AcquireNotify success: fd %d MTU %u\n", fd, notify_io.mtu);
+	bt_shell_printf("AcquireNotify success: fd %d MTU %u\n", fd,
+								notify_io.mtu);
 
 	notify_io.io = pipe_io_new(fd, NULL);
 
@@ -843,8 +847,9 @@
 
 	iface = g_dbus_proxy_get_interface(proxy);
 	if (strcmp(iface, "org.bluez.GattCharacteristic1")) {
-		bt_shell_printf("Unable to acquire notify: %s not a characteristic\n",
-						g_dbus_proxy_get_path(proxy));
+		bt_shell_printf("Unable to acquire notify: %s not a"
+				" characteristic\n",
+				g_dbus_proxy_get_path(proxy));
 		return bt_shell_noninteractive_quit(EXIT_FAILURE);
 	}
 
@@ -899,7 +904,8 @@
 
 	if (g_dbus_proxy_method_call(proxy, method, NULL, notify_reply,
 				GUINT_TO_POINTER(enable), NULL) == FALSE) {
-		bt_shell_printf("Failed to %s notify\n", enable ? "start" : "stop");
+		bt_shell_printf("Failed to %s notify\n",
+				enable ? "start" : "stop");
 		return bt_shell_noninteractive_quit(EXIT_FAILURE);
 	}
 
@@ -946,7 +952,8 @@
 	dbus_error_init(&error);
 
 	if (dbus_set_error_from_message(&error, message) == TRUE) {
-		bt_shell_printf("Failed to register application: %s\n", error.name);
+		bt_shell_printf("Failed to register application: %s\n",
+				error.name);
 		dbus_error_free(&error);
 		return bt_shell_noninteractive_quit(EXIT_FAILURE);
 	}
@@ -1031,7 +1038,8 @@
 						PROFILE_INTERFACE, methods,
 						NULL, properties, NULL,
 						NULL) == FALSE) {
-			bt_shell_printf("Failed to register application object\n");
+			bt_shell_printf("Failed to register application"
+					" object\n");
 			return bt_shell_noninteractive_quit(EXIT_FAILURE);
 		}
 	}
@@ -1054,7 +1062,8 @@
 	dbus_error_init(&error);
 
 	if (dbus_set_error_from_message(&error, message) == TRUE) {
-		bt_shell_printf("Failed to unregister application: %s\n", error.name);
+		bt_shell_printf("Failed to unregister application: %s\n",
+				error.name);
 		dbus_error_free(&error);
 		return bt_shell_noninteractive_quit(EXIT_FAILURE);
 	}