Index: uspace/app/stats/stats.c
===================================================================
--- uspace/app/stats/stats.c	(revision 53ad43cce05b0004bca31a7c5d6822fc33686cf1)
+++ uspace/app/stats/stats.c	(revision 5ef169038f3c0afb4938a7b77c8772fc6025b1b7)
@@ -202,31 +202,31 @@
 {
 	printf(
-	    "Usage: %s [-t task_id] [-a] [-c] [-l] [-u]\n" \
-	    "\n" \
-	    "Options:\n" \
-	    "\t-t task_id\n" \
-	    "\t--task=task_id\n" \
-	    "\t\tList threads of the given task\n" \
-	    "\n" \
-	    "\t-a\n" \
-	    "\t--all\n" \
-	    "\t\tList all threads\n" \
-	    "\n" \
-	    "\t-c\n" \
-	    "\t--cpus\n" \
-	    "\t\tList CPUs\n" \
-	    "\n" \
-	    "\t-l\n" \
-	    "\t--load\n" \
-	    "\t\tPrint system load\n" \
-	    "\n" \
-	    "\t-u\n" \
-	    "\t--uptime\n" \
-	    "\t\tPrint system uptime\n" \
-	    "\n" \
-	    "\t-h\n" \
-	    "\t--help\n" \
+	    "Usage: %s [-t task_id] [-a] [-c] [-l] [-u]\n"
+	    "\n"
+	    "Options:\n"
+	    "\t-t task_id\n"
+	    "\t--task=task_id\n"
+	    "\t\tList threads of the given task\n"
+	    "\n"
+	    "\t-a\n"
+	    "\t--all\n"
+	    "\t\tList all threads\n"
+	    "\n"
+	    "\t-c\n"
+	    "\t--cpus\n"
+	    "\t\tList CPUs\n"
+	    "\n"
+	    "\t-l\n"
+	    "\t--load\n"
+	    "\t\tPrint system load\n"
+	    "\n"
+	    "\t-u\n"
+	    "\t--uptime\n"
+	    "\t\tPrint system uptime\n"
+	    "\n"
+	    "\t-h\n"
+	    "\t--help\n"
 	    "\t\tPrint this usage information\n"
-	    "\n" \
+	    "\n"
 	    "Without any options all tasks are listed\n",
 	    name
Index: uspace/drv/block/usbmast/main.c
===================================================================
--- uspace/drv/block/usbmast/main.c	(revision 53ad43cce05b0004bca31a7c5d6822fc33686cf1)
+++ uspace/drv/block/usbmast/main.c	(revision 5ef169038f3c0afb4938a7b77c8772fc6025b1b7)
@@ -267,5 +267,5 @@
 	}
 
-	usb_log_info("Mass storage `%s' LUN %u: " \
+	usb_log_info("Mass storage `%s' LUN %u: "
 	    "%s by %s rev. %s is %s (%s).\n",
 	    usb_device_get_name(mdev->usb_dev),
Index: uspace/drv/bus/usb/ohci/ohci_batch.c
===================================================================
--- uspace/drv/bus/usb/ohci/ohci_batch.c	(revision 53ad43cce05b0004bca31a7c5d6822fc33686cf1)
+++ uspace/drv/bus/usb/ohci/ohci_batch.c	(revision 5ef169038f3c0afb4938a7b77c8772fc6025b1b7)
@@ -321,5 +321,5 @@
 	    ohci_batch->tds[td_current]->be);
 	usb_log_debug2(
-	    "Batch %p %s %s " USB_TRANSFER_BATCH_FMT " initialized.", \
+	    "Batch %p %s %s " USB_TRANSFER_BATCH_FMT " initialized.",
 	    &ohci_batch->base,
 	    usb_str_transfer_type(ohci_batch->base.ep->transfer_type),
@@ -366,5 +366,5 @@
 	}
 	usb_log_debug2(
-	    "Batch %p %s %s " USB_TRANSFER_BATCH_FMT " initialized.", \
+	    "Batch %p %s %s " USB_TRANSFER_BATCH_FMT " initialized.",
 	    &ohci_batch->base,
 	    usb_str_transfer_type(ohci_batch->base.ep->transfer_type),
Index: uspace/drv/bus/usb/uhci/uhci_batch.c
===================================================================
--- uspace/drv/bus/usb/uhci/uhci_batch.c	(revision 53ad43cce05b0004bca31a7c5d6822fc33686cf1)
+++ uspace/drv/bus/usb/uhci/uhci_batch.c	(revision 5ef169038f3c0afb4938a7b77c8772fc6025b1b7)
@@ -251,5 +251,5 @@
 	uhci_ep->toggle = toggle;
 	usb_log_debug2(
-	    "Batch %p %s %s " USB_TRANSFER_BATCH_FMT " initialized.", \
+	    "Batch %p %s %s " USB_TRANSFER_BATCH_FMT " initialized.",
 	    uhci_batch,
 	    usb_str_transfer_type(uhci_batch->base.ep->transfer_type),
Index: uspace/drv/nic/rtl8169/defs.h
===================================================================
--- uspace/drv/nic/rtl8169/defs.h	(revision 53ad43cce05b0004bca31a7c5d6822fc33686cf1)
+++ uspace/drv/nic/rtl8169/defs.h	(revision 5ef169038f3c0afb4938a7b77c8772fc6025b1b7)
@@ -189,7 +189,7 @@
 	INT_RER = (1 << 1), /**< Receive error interrupt */
 	INT_ROK = (1 << 0), /**< Receive OK interrupt */
-	INT_KNOWN = (INT_SERR | INT_TIME_OUT | INT_SW | INT_TDU \
-	    | INT_FIFOOVW | INT_PUN | INT_RXOVW | INT_TER \
-	    | INT_TOK| INT_RER | INT_ROK),
+	INT_KNOWN = (INT_SERR | INT_TIME_OUT | INT_SW | INT_TDU |
+	    INT_FIFOOVW | INT_PUN | INT_RXOVW | INT_TER |
+	    INT_TOK | INT_RER | INT_ROK),
 };
 
Index: uspace/lib/softfloat/common.c
===================================================================
--- uspace/lib/softfloat/common.c	(revision 53ad43cce05b0004bca31a7c5d6822fc33686cf1)
+++ uspace/lib/softfloat/common.c	(revision 5ef169038f3c0afb4938a7b77c8772fc6025b1b7)
@@ -38,19 +38,19 @@
 /* Table for fast leading zeroes counting. */
 char zeroTable[256] = {
-	8, 7, 6, 6, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4, 4, 4, \
-	3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, \
-	2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, \
-	2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, \
-	1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, \
-	1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, \
-	1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, \
-	1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, \
-	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
-	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
-	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
-	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
-	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
-	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
-	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
+	8, 7, 6, 6, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4, 4, 4,
+	3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
+	2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+	2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+	1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+	1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+	1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+	1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
 	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 };
Index: uspace/lib/usbdev/src/devpoll.c
===================================================================
--- uspace/lib/usbdev/src/devpoll.c	(revision 53ad43cce05b0004bca31a7c5d6822fc33686cf1)
+++ uspace/lib/usbdev/src/devpoll.c	(revision 5ef169038f3c0afb4938a7b77c8772fc6025b1b7)
@@ -117,5 +117,5 @@
 		const usb_endpoint_mapping_t *mapping =
 		    polling->ep_mapping;
-		usb_log_debug("Poll (%p): started polling of `%s' - " \
+		usb_log_debug("Poll (%p): started polling of `%s' - "
 		    "interface %d (%s,%d,%d), %zuB/%zu.\n",
 		    polling, usb_device_get_name(polling->device),
Index: uspace/srv/devman/drv_conn.c
===================================================================
--- uspace/srv/devman/drv_conn.c	(revision 53ad43cce05b0004bca31a7c5d6822fc33686cf1)
+++ uspace/srv/devman/drv_conn.c	(revision 5ef169038f3c0afb4938a7b77c8772fc6025b1b7)
@@ -143,5 +143,5 @@
 	fid_t fid = fibril_create(init_running_drv, driver);
 	if (fid == 0) {
-		log_msg(LOG_DEFAULT, LVL_ERROR, "Failed to create initialization fibril " \
+		log_msg(LOG_DEFAULT, LVL_ERROR, "Failed to create initialization fibril "
 		    "for driver `%s'.", driver->name);
 		fibril_mutex_unlock(&driver->driver_mutex);
Index: uspace/srv/devman/main.c
===================================================================
--- uspace/srv/devman/main.c	(revision 53ad43cce05b0004bca31a7c5d6822fc33686cf1)
+++ uspace/srv/devman/main.c	(revision 5ef169038f3c0afb4938a7b77c8772fc6025b1b7)
@@ -114,5 +114,5 @@
 
 	if (driver == NULL) {
-		log_msg(LOG_DEFAULT, LVL_ERROR, "IPC forwarding refused - " \
+		log_msg(LOG_DEFAULT, LVL_ERROR, "IPC forwarding refused - "
 		    "the device %" PRIun " is not in usable state.", handle);
 		async_answer_0(iid, ENOENT);
@@ -194,5 +194,5 @@
 
 	if (driver == NULL) {
-		log_msg(LOG_DEFAULT, LVL_ERROR, "IPC forwarding refused - " \
+		log_msg(LOG_DEFAULT, LVL_ERROR, "IPC forwarding refused - "
 		    "the device %" PRIun " is not in usable state.", handle);
 		async_answer_0(iid, ENOENT);
