Index: uspace/ns/ns.c
===================================================================
--- uspace/ns/ns.c	(revision 8b243f295e54de841c17a2606bdc9a2fe484dbbb)
+++ uspace/ns/ns.c	(revision 0eb58f17598f4b276ac9acad8b6698dd39710b1a)
@@ -56,5 +56,6 @@
 
 static int register_service(ipcarg_t service, ipcarg_t phone, ipc_call_t *call);
-static int connect_to_service(ipcarg_t service, ipc_call_t *call, ipc_callid_t callid);
+static int connect_to_service(ipcarg_t service, ipc_call_t *call,
+    ipc_callid_t callid);
 
 /* Static functions implementing NS hash table operations. */
@@ -84,5 +85,6 @@
 static void *klogaddr = NULL;
 
-static void get_as_area(ipc_callid_t callid, ipc_call_t *call, char *name, void **addr)
+static void get_as_area(ipc_callid_t callid, ipc_call_t *call, char *name,
+    void **addr)
 {
 	void *ph_addr;
@@ -107,5 +109,6 @@
 	ipcarg_t retval;
 
-	if (!hash_table_create(&ns_hash_table, NS_HASH_TABLE_CHAINS, 3, &ns_hash_table_ops)) {
+	if (!hash_table_create(&ns_hash_table, NS_HASH_TABLE_CHAINS, 3,
+	    &ns_hash_table_ops)) {
 		return ENOMEM;
 	}
@@ -135,5 +138,6 @@
 			 * Server requests service registration.
 			 */
-			retval = register_service(IPC_GET_ARG1(call), IPC_GET_ARG3(call), &call);
+			retval = register_service(IPC_GET_ARG1(call),
+			    IPC_GET_ARG3(call), &call);
 			break;
 		case IPC_M_CONNECT_ME_TO:
@@ -141,5 +145,6 @@
 			 * Client requests to be connected to a service.
 			 */
-			retval = connect_to_service(IPC_GET_ARG1(call), &call, callid);
+			retval = connect_to_service(IPC_GET_ARG1(call), &call,
+			    callid);
 			break;
 		default:
@@ -147,5 +152,5 @@
 			break;
 		}
-		if (! (callid & IPC_CALLID_NOTIFICATION)) {
+		if (!(callid & IPC_CALLID_NOTIFICATION)) {
 			ipc_answer_fast(callid, retval, 0, 0);
 		}
@@ -163,5 +168,9 @@
 int register_service(ipcarg_t service, ipcarg_t phone, ipc_call_t *call)
 {
-	unsigned long keys[3] = { service, call->in_phone_hash, 0 };
+	unsigned long keys[3] = {
+		service,
+		call->in_phone_hash,
+		0
+	};
 	hashed_service_t *hs;
 			
