Index: uspace/app/hdisk/func_none.c
===================================================================
--- uspace/app/hdisk/func_none.c	(revision 8c95dff74a31d0b98e3e8fb115185a07e64c2ac2)
+++ uspace/app/hdisk/func_none.c	(revision 0c2d9bb57bc590e00bd17e5f7cf0937be160cca7)
@@ -1,4 +1,4 @@
 /*
- * Copyright (c) 2012, 2013 Dominik Taborsky
+ * Copyright (c) 2012-2013 Dominik Taborsky
  * All rights reserved.
  *
@@ -27,5 +27,5 @@
  */
 
- /** @addtogroup hdisk
+/** @addtogroup hdisk
  * @{
  */
@@ -33,11 +33,8 @@
  */
 
-
 #include <errno.h>
-
 #include "func_none.h"
 
 static void not_implemented(void);
-
 
 int construct_none_label(label_t *this)
@@ -45,17 +42,17 @@
 	this->layout = LYT_NONE;
 	
-	this->add_part      = add_none_part;
-	this->delete_part   = delete_none_part;
+	this->add_part = add_none_part;
+	this->delete_part = delete_none_part;
 	this->destroy_label = destroy_none_label;
-	this->new_label     = new_none_label;
-	this->print_parts   = print_none_parts;
-	this->read_parts    = read_none_parts;
-	this->write_parts   = write_none_parts;
-	this->extra_funcs   = extra_none_funcs;
+	this->new_label = new_none_label;
+	this->print_parts = print_none_parts;
+	this->read_parts = read_none_parts;
+	this->write_parts = write_none_parts;
+	this->extra_funcs = extra_none_funcs;
 	
 	return EOK;
 }
 
-int add_none_part(label_t *this, tinput_t * in)
+int add_none_part(label_t *this, tinput_t *in)
 {
 	not_implemented();
@@ -63,5 +60,5 @@
 }
 
-int delete_none_part(label_t *this, tinput_t * in)
+int delete_none_part(label_t *this, tinput_t *in)
 {
 	not_implemented();
@@ -104,5 +101,5 @@
 }
 
-static void not_implemented()
+static void not_implemented(void)
 {
 	printf("No format selected.\n");
