Index: uspace/lib/http/src/http.c
===================================================================
--- uspace/lib/http/src/http.c	(revision b7fd2a02e4161f4edd38548e7f8456b8021549be)
+++ uspace/lib/http/src/http.c	(revision baa2a337e2cb11dbcaf63fa397dc791f4368e222)
@@ -60,5 +60,5 @@
 	if (http == NULL)
 		return NULL;
-	
+
 	http->host = str_dup(host);
 	if (http->host == NULL) {
@@ -67,5 +67,5 @@
 	}
 	http->port = port;
-	
+
 	http->buffer_size = 4096;
 	errno_t rc = recv_buffer_init(&http->recv_buffer, http->buffer_size,
@@ -75,5 +75,5 @@
 		return NULL;
 	}
-	
+
 	return http;
 }
@@ -83,28 +83,28 @@
 	if (http->conn != NULL)
 		return EBUSY;
-	
+
 	errno_t rc = inet_host_plookup_one(http->host, ip_any, &http->addr, NULL,
 	    NULL);
 	if (rc != EOK)
 		return rc;
-	
+
 	inet_ep2_t epp;
-	
+
 	inet_ep2_init(&epp);
 	epp.remote.addr = http->addr;
 	epp.remote.port = http->port;
-	
+
 	rc = tcp_create(&http->tcp);
 	if (rc != EOK)
 		return rc;
-	
+
 	rc = tcp_conn_create(http->tcp, &epp, NULL, NULL, &http->conn);
 	if (rc != EOK)
 		return rc;
-	
+
 	rc = tcp_conn_wait_connected(http->conn);
 	if (rc != EOK)
 		return rc;
-	
+
 	return rc;
 }
@@ -114,10 +114,10 @@
 	if (http->conn == NULL)
 		return EINVAL;
-	
+
 	tcp_conn_destroy(http->conn);
 	http->conn = NULL;
 	tcp_destroy(http->tcp);
 	http->tcp = NULL;
-	
+
 	return EOK;
 }
