Index: uspace/app/bdsh/errors.c
===================================================================
--- uspace/app/bdsh/errors.c	(revision 582a0b84b0a73672531e7b404a89997af41ba0b9)
+++ uspace/app/bdsh/errors.c	(revision 29c3c722f633a767a2e38e4526412ec428d68cd3)
@@ -44,6 +44,8 @@
 
 
-/* Look up errno in cl_errors and return the corresponding string.
- * Return NULL if not found */
+/** Look up errno in cl_errors and return the corresponding string.
+ *
+ * Return NULL if not found
+ */
 static const char *err2str(int err)
 {
@@ -55,8 +57,10 @@
 }
 
-/* Print an error report signifying errno, which is translated to
- * its corresponding human readable string. If errno > 0, raise the
- * cli_quit int that tells the main program loop to exit immediately */
-
+/** Print an error report signifying errno
+ *
+ * errno is translated to its corresponding human readable string.
+ * If errno > 0, raise the cli_quit int that tells the main program loop
+ * to exit immediately
+ */
 void cli_error(int err, const char *fmt, ...)
 {
@@ -71,7 +75,9 @@
 		printf(" (Unknown Error %d)\n", err);
 
-	/* If fatal, raise cli_quit so that we try to exit
+	/*
+	 * If fatal, raise cli_quit so that we try to exit
 	 * gracefully. This will break the main loop and
-	 * invoke the destructor */
+	 * invoke the destructor
+	 */
 	if (err == CL_EFATAL)
 		cli_quit = 1;
