Index: uspace/lib/http/src/headers.c
===================================================================
--- uspace/lib/http/src/headers.c	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ uspace/lib/http/src/headers.c	(revision 3f932a7eeaf8b09420c71c95d09792b4ef55221a)
@@ -87,6 +87,5 @@
 	if (buf == NULL) {
 		return printf_size(HTTP_HEADER_LINE, header->name, header->value);
-	}
-	else {
+	} else {
 		return snprintf(buf, buf_size,
 		    HTTP_HEADER_LINE, header->name, header->value);
@@ -229,9 +228,11 @@
 	size_t write_index = 0;
 
-	while (is_lws(value[read_index])) read_index++;
+	while (is_lws(value[read_index]))
+		read_index++;
 
 	while (value[read_index] != 0) {
 		if (is_lws(value[read_index])) {
-			while (is_lws(value[read_index])) read_index++;
+			while (is_lws(value[read_index]))
+				read_index++;
 
 			if (value[read_index] != 0)
@@ -255,5 +256,6 @@
 }
 
-void http_headers_init(http_headers_t *headers) {
+void http_headers_init(http_headers_t *headers)
+{
 	list_initialize(&headers->list);
 }
@@ -269,6 +271,5 @@
 		if (found == NULL) {
 			found = header;
-		}
-		else {
+		} else {
 			return HTTP_EMULTIPLE_HEADERS;
 		}
Index: uspace/lib/http/src/receive-buffer.c
===================================================================
--- uspace/lib/http/src/receive-buffer.c	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ uspace/lib/http/src/receive-buffer.c	(revision 3f932a7eeaf8b09420c71c95d09792b4ef55221a)
@@ -310,6 +310,5 @@
 			*nrecv = written;
 			return EOK;
-		}
-		else if (c == '\r') {
+		} else if (c == '\r') {
 			rc = recv_discard(rb, '\n', &nr);
 			if (rc != EOK)
Index: uspace/lib/http/src/request.c
===================================================================
--- uspace/lib/http/src/request.c	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ uspace/lib/http/src/request.c	(revision 3f932a7eeaf8b09420c71c95d09792b4ef55221a)
@@ -84,6 +84,5 @@
 	if (buf == NULL) {
 		return printf_size(HTTP_METHOD_LINE, method, path);
-	}
-	else {
+	} else {
 		return snprintf(buf, buf_size, HTTP_METHOD_LINE, method, path);
 	}
