Index: uspace/lib/c/test/sprintf.c
===================================================================
--- uspace/lib/c/test/sprintf.c	(revision 013e5d32c9af4ea5eff1d29e41946a398895b296)
+++ uspace/lib/c/test/sprintf.c	(revision bf2042f951fffa4cddb191c3c45beab2ee41f65b)
@@ -54,21 +54,21 @@
 
 
-SPRINTF_TEST(no_formatting, "This is a test.", "This is a test.")
+SPRINTF_TEST(no_formatting, "This is a test.", "This is a test.");
 
 
 
-SPRINTF_TEST(string_plain, "some text", "%s", "some text")
+SPRINTF_TEST(string_plain, "some text", "%s", "some text");
 
-SPRINTF_TEST(string_dynamic_width, "  tex", "%*.*s", 5, 3, "text")
+SPRINTF_TEST(string_dynamic_width, "  tex", "%*.*s", 5, 3, "text");
 
-SPRINTF_TEST(string_dynamic_width_align_left, "text   ", "%-*.*s", 7, 7, "text")
+SPRINTF_TEST(string_dynamic_width_align_left, "text   ", "%-*.*s", 7, 7, "text");
 
-SPRINTF_TEST(string_pad, "    text", "%8.10s", "text")
+SPRINTF_TEST(string_pad, "    text", "%8.10s", "text");
 
-SPRINTF_TEST(string_pad_but_cut, "  very lon", "%10.8s", "very long text")
+SPRINTF_TEST(string_pad_but_cut, "  very lon", "%10.8s", "very long text");
 
 
 
-SPRINTF_TEST(char_basic, "[a]", "[%c]", 'a')
+SPRINTF_TEST(char_basic, "[a]", "[%c]", 'a');
 
 
@@ -76,18 +76,18 @@
 SPRINTF_TEST(int_various_padding, "[1] [ 02] [03 ] [004] [005]",
     "[%d] [%3.2d] [%-3.2d] [%2.3d] [%-2.3d]",
-    1, 2, 3, 4, 5)
+    1, 2, 3, 4, 5);
 
 SPRINTF_TEST(int_negative_various_padding, "[-1] [-02] [-03] [-004] [-005]",
     "[%d] [%3.2d] [%-3.2d] [%2.3d] [%-2.3d]",
-    -1, -2, -3, -4, -5)
+    -1, -2, -3, -4, -5);
 
 SPRINTF_TEST(long_negative_various_padding, "[-1] [-02] [-03] [-004] [-005]",
     "[%lld] [%3.2lld] [%-3.2lld] [%2.3lld] [%-2.3lld]",
     (long long) -1, (long long) -2, (long long) -3, (long long) -4,
-    (long long) -5)
+    (long long) -5);
 
 SPRINTF_TEST(int_as_hex, "[0x11] [0x012] [0x013] [0x00014] [0x00015]",
     "[%#x] [%#5.3x] [%#-5.3x] [%#3.5x] [%#-3.5x]",
-    17, 18, 19, 20, 21)
+    17, 18, 19, 20, 21);
 
 
