Index: uspace/lib/posix/test/scanf.c
===================================================================
--- uspace/lib/posix/test/scanf.c	(revision 9fa14d8ddc43d5a2acc6637cb66265ecd07540e8)
+++ uspace/lib/posix/test/scanf.c	(revision f712a858b9463dae30e9eee5ef1ccc54ae618f02)
@@ -49,5 +49,6 @@
  */
 
-PCUT_TEST(int_decimal) {
+PCUT_TEST(int_decimal)
+{
 	int number;
 	int rc = sscanf("4242", "%d", &number);
@@ -56,5 +57,6 @@
 }
 
-PCUT_TEST(int_negative_decimal) {
+PCUT_TEST(int_negative_decimal)
+{
 	int number;
 	int rc = sscanf("-53", "%d", &number);
@@ -69,5 +71,6 @@
  */
 
-PCUT_TEST(int_misc) {
+PCUT_TEST(int_misc)
+{
 	unsigned char uhh;
 	signed char shh;
@@ -83,7 +86,7 @@
 
 	int rc = sscanf(
-		"\n j tt % \t -121314 98765 aqw 0765 0x77 0xABCDEF88 -99 884",
-		" j tt %%%3hhd%1hhu%3hd %3hu%u aqw%n %lo%llx %p %li %lld",
-		&shh, &uhh, &sh, &uh, &udef, &sdef, &ul, &ull, &p, &sl, &sll);
+	    "\n j tt % \t -121314 98765 aqw 0765 0x77 0xABCDEF88 -99 884",
+	    " j tt %%%3hhd%1hhu%3hd %3hu%u aqw%n %lo%llx %p %li %lld",
+	    &shh, &uhh, &sh, &uh, &udef, &sdef, &ul, &ull, &p, &sl, &sll);
 
 	PCUT_ASSERT_INT_EQUALS(10, rc);
@@ -102,5 +105,6 @@
 }
 
-PCUT_TEST(double_misc) {
+PCUT_TEST(double_misc)
+{
 	float f;
 	double d;
@@ -108,7 +112,7 @@
 
 	int rc = sscanf(
-		"\n \t\t1.0 -0x555.AP10 1234.5678e12",
-		"%f %lf %Lf",
-		&f, &d, &ld);
+	    "\n \t\t1.0 -0x555.AP10 1234.5678e12",
+	    "%f %lf %Lf",
+	    &f, &d, &ld);
 
 	PCUT_ASSERT_INT_EQUALS(3, rc);
@@ -119,12 +123,13 @@
 }
 
-PCUT_TEST(str_misc) {
+PCUT_TEST(str_misc)
+{
 	char str[20];
 	char *pstr;
 
 	int rc = sscanf(
-		"\n\n\thello world    \n",
-		"%5s %ms",
-		str, &pstr);
+	    "\n\n\thello world    \n",
+	    "%5s %ms",
+	    str, &pstr);
 
 	PCUT_ASSERT_INT_EQUALS(2, rc);
@@ -136,12 +141,13 @@
 }
 
-PCUT_TEST(str_matchers) {
+PCUT_TEST(str_matchers)
+{
 	char scanset[20];
 	char *pscanset;
 
 	int rc = sscanf(
-		"\n\n\th-e-l-l-o world-]    \n",
-		" %9[-eh-o] %m[^]-]",
-		scanset, &pscanset);
+	    "\n\n\th-e-l-l-o world-]    \n",
+	    " %9[-eh-o] %m[^]-]",
+	    scanset, &pscanset);
 
 	PCUT_ASSERT_INT_EQUALS(2, rc);
@@ -153,12 +159,13 @@
 }
 
-PCUT_TEST(char_misc) {
+PCUT_TEST(char_misc)
+{
 	char seq[20];
 	char *pseq;
 
 	int rc = sscanf(
-		"\n\n\thello world    \n",
-		" %5c %mc",
-		seq, &pseq);
+	    "\n\n\thello world    \n",
+	    " %5c %mc",
+	    seq, &pseq);
 
 	PCUT_ASSERT_INT_EQUALS(2, rc);
