Index: uspace/app/untar/main.c
===================================================================
--- uspace/app/untar/main.c	(revision b7fd2a02e4161f4edd38548e7f8456b8021549be)
+++ uspace/app/untar/main.c	(revision 5754c31e4e22b3ba9c461583e759f5fed5d44704)
@@ -40,5 +40,6 @@
 #include "tar.h"
 
-static size_t get_block_count(size_t bytes) {
+static size_t get_block_count(size_t bytes)
+{
 	return (bytes + TAR_BLOCK_SIZE - 1) / TAR_BLOCK_SIZE;
 }
Index: uspace/app/untar/tar.c
===================================================================
--- uspace/app/untar/tar.c	(revision b7fd2a02e4161f4edd38548e7f8456b8021549be)
+++ uspace/app/untar/tar.c	(revision 5754c31e4e22b3ba9c461583e759f5fed5d44704)
@@ -41,5 +41,6 @@
 #include "tar.h"
 
-tar_type_t tar_type_parse(const char type) {
+tar_type_t tar_type_parse(const char type)
+{
 	switch (type) {
 	case '0':
@@ -53,5 +54,6 @@
 }
 
-const char *tar_type_str(tar_type_t type) {
+const char *tar_type_str(tar_type_t type)
+{
 	switch (type) {
 	case TAR_TYPE_UNKNOWN:
