Index: uspace/dist/src/c/demos/tetris/tetris.c
===================================================================
--- uspace/dist/src/c/demos/tetris/tetris.c	(revision 76d0981d8dda2b7d698201a93e0c555e99215ba5)
+++ uspace/dist/src/c/demos/tetris/tetris.c	(revision 2ee0e4a1310e3fe2e6e7d1f090bbe5a5e0aa5bb3)
@@ -123,5 +123,5 @@
 				/* This row is to be elided */
 				rows++;
-				memset(&board[base], 0, sizeof(cell) *(B_COLS - 2));
+				memset(&board[base], 0, sizeof(cell) * (B_COLS - 2));
 
 				scr_update();
Index: uspace/dist/src/c/demos/top/top.c
===================================================================
--- uspace/dist/src/c/demos/top/top.c	(revision 76d0981d8dda2b7d698201a93e0c555e99215ba5)
+++ uspace/dist/src/c/demos/top/top.c	(revision 2ee0e4a1310e3fe2e6e7d1f090bbe5a5e0aa5bb3)
@@ -62,13 +62,13 @@
 
 static const column_t task_columns[] = {
-	{"taskid",   't',  8},
-	{"thrds",    'h',  7},
-	{"resident", 'r', 10},
-	{"%resi",    'R',  7},
-	{"virtual",  'v',  9},
-	{"%virt",    'V',  7},
-	{"%user",    'U',  7},
-	{"%kern",    'K',  7},
-	{"name",     'd',  0},
+	{ "taskid",   't',  8 },
+	{ "thrds",    'h',  7 },
+	{ "resident", 'r', 10 },
+	{ "%resi",    'R',  7 },
+	{ "virtual",  'v',  9 },
+	{ "%virt",    'V',  7 },
+	{ "%user",    'U',  7 },
+	{ "%kern",    'K',  7 },
+	{ "name",     'd',  0 },
 };
 
@@ -87,11 +87,11 @@
 
 static const column_t ipc_columns[] = {
-	{"taskid",  't', 8},
-	{"cls snt", 'c', 9},
-	{"cls rcv", 'C', 9},
-	{"ans snt", 'a', 9},
-	{"ans rcv", 'A', 9},
-	{"forward", 'f', 9},
-	{"name",    'd', 0},
+	{ "taskid",  't', 8 },
+	{ "cls snt", 'c', 9 },
+	{ "cls rcv", 'C', 9 },
+	{ "ans snt", 'a', 9 },
+	{ "ans rcv", 'A', 9 },
+	{ "forward", 'f', 9 },
+	{ "name",    'd', 0 },
 };
 
@@ -108,10 +108,10 @@
 
 static const column_t exception_columns[] = {
-	{"exc",         'e',  8},
-	{"count",       'n', 10},
-	{"%count",      'N',  8},
-	{"cycles",      'c', 10},
-	{"%cycles",     'C',  9},
-	{"description", 'd',  0},
+	{ "exc",         'e',  8 },
+	{ "count",       'n', 10 },
+	{ "%count",      'N',  8 },
+	{ "cycles",      'c', 10 },
+	{ "%cycles",     'C',  9 },
+	{ "description", 'd',  0 },
 };
 
@@ -383,9 +383,9 @@
 		return 0;
 	case FIELD_PERCENT:
-		if (fa->fixed.upper * fb->fixed.lower
-		    > fb->fixed.upper * fa->fixed.lower)
+		if (fa->fixed.upper * fb->fixed.lower >
+		    fb->fixed.upper * fa->fixed.lower)
 			return 1 * sort_reverse;
-		if (fa->fixed.upper * fb->fixed.lower
-		    < fb->fixed.upper * fa->fixed.lower)
+		if (fa->fixed.upper * fb->fixed.lower <
+		    fb->fixed.upper * fa->fixed.lower)
 			return -1 * sort_reverse;
 		return 0;
