Index: uspace/app/klog/klog.c
===================================================================
--- uspace/app/klog/klog.c	(revision 6a0ff7f4cac21a5122279a5eab3cc09ad2902207)
+++ uspace/app/klog/klog.c	(revision 3815efb9da85d83bf9032b483d50d94ef418aa61)
@@ -143,7 +143,7 @@
  * Receives kernel klog notifications.
  *
- * @param callid	IPC call ID
- * @param call		IPC call structure
- * @param arg		Local argument
+ * @param callid IPC call ID
+ * @param call   IPC call structure
+ * @param arg    Local argument
  *
  */
Index: uspace/app/mkbd/main.c
===================================================================
--- uspace/app/mkbd/main.c	(revision 6a0ff7f4cac21a5122279a5eab3cc09ad2902207)
+++ uspace/app/mkbd/main.c	(revision 3815efb9da85d83bf9032b483d50d94ef418aa61)
@@ -280,5 +280,5 @@
 	size_t actual_size;
 	int event_nr;
-
+	
 	while (true) {
 		/** @todo Try blocking call. */
Index: uspace/lib/c/generic/async.c
===================================================================
--- uspace/lib/c/generic/async.c	(revision 6a0ff7f4cac21a5122279a5eab3cc09ad2902207)
+++ uspace/lib/c/generic/async.c	(revision 3815efb9da85d83bf9032b483d50d94ef418aa61)
@@ -213,7 +213,7 @@
  * This function is defined as a weak symbol - to be redefined in user code.
  *
- * @param callid	Hash of the incoming call.
- * @param call		Data of the incoming call.
- * @param arg		Local argument
+ * @param callid Hash of the incoming call.
+ * @param call   Data of the incoming call.
+ * @param arg    Local argument
  *
  */
@@ -228,7 +228,7 @@
  * This function is defined as a weak symbol - to be redefined in user code.
  *
- * @param callid	Hash of the incoming call.
- * @param call  	Data of the incoming call.
- * @param arg		Local argument.
+ * @param callid Hash of the incoming call.
+ * @param call   Data of the incoming call.
+ * @param arg    Local argument.
  *
  */
@@ -709,5 +709,5 @@
  * @param cfibril       Fibril function that should be called upon opening the
  *                      connection.
- * @param carg		Extra argument to pass to the connection fibril
+ * @param carg          Extra argument to pass to the connection fibril
  *
  * @return New fibril id or NULL on failure.
Index: uspace/lib/c/generic/str.c
===================================================================
--- uspace/lib/c/generic/str.c	(revision 6a0ff7f4cac21a5122279a5eab3cc09ad2902207)
+++ uspace/lib/c/generic/str.c	(revision 3815efb9da85d83bf9032b483d50d94ef418aa61)
@@ -540,7 +540,7 @@
 
 	dstr_size = str_size(dest);
-	if (dstr_size >= size) {
+	if (dstr_size >= size)
 		return;
-	}
+	
 	str_cpy(dest + dstr_size, size - dstr_size, src);
 }
Index: uspace/lib/c/generic/task.c
===================================================================
--- uspace/lib/c/generic/task.c	(revision 6a0ff7f4cac21a5122279a5eab3cc09ad2902207)
+++ uspace/lib/c/generic/task.c	(revision 3815efb9da85d83bf9032b483d50d94ef418aa61)
@@ -190,4 +190,5 @@
 	
 	return EOK;
+	
 error:
 	/* Error exit */
Index: uspace/lib/c/include/async.h
===================================================================
--- uspace/lib/c/include/async.h	(revision 6a0ff7f4cac21a5122279a5eab3cc09ad2902207)
+++ uspace/lib/c/include/async.h	(revision 3815efb9da85d83bf9032b483d50d94ef418aa61)
@@ -55,9 +55,9 @@
 /** Client connection handler
  *
- * @param callid	ID of incoming call or 0 if connection initiated from
- *			inside using async_connect_to_me()
- * @param call		Incoming call or 0 if connection initiated from inside
- * @param arg		Local argument passed from async_new_connection() or
- *			async_connect_to_me()
+ * @param callid ID of incoming call or 0 if connection initiated from
+ *               inside using async_connect_to_me()
+ * @param call   Incoming call or 0 if connection initiated from inside
+ * @param arg    Local argument passed from async_new_connection() or
+ *               async_connect_to_me()
  */
 typedef void (*async_client_conn_t)(ipc_callid_t, ipc_call_t *, void *);
