Index: kernel/generic/src/proc/task.c
===================================================================
--- kernel/generic/src/proc/task.c	(revision a2a00e8d4f4059d97c6514c8276189ab85ff03a8)
+++ kernel/generic/src/proc/task.c	(revision c0379fcd0ca28d6439cb4dbc7c14648b1e2d8462)
@@ -427,6 +427,6 @@
 
 #ifdef __32_BITS__	
-	printf("%-6" PRIu64 " %-12s %-3" PRIu32 " %10p %10p %9" PRIu64 "%c %9" PRIu64 "%c %9"
-		PRIu64 "%c %7ld %6ld", t->taskid, t->name, t->context, t, t->as, cycles, suffix,
+	printf("%-6" PRIu64 " %-12s %-3" PRIu32 " %10p %10p %9" PRIu64 "%c %9"
+		PRIu64 "%c %7ld %6ld", t->taskid, t->name, t->context, t, t->as,
 		ucycles, usuffix, kcycles, ksuffix, atomic_get(&t->refcount),
 		atomic_get(&t->active_calls));
@@ -434,6 +434,6 @@
 
 #ifdef __64_BITS__
-	printf("%-6" PRIu64 " %-12s %-3" PRIu32 " %18p %18p %9" PRIu64 "%c %9" PRIu64 "%c %9"
-		PRIu64 "%c %7ld %6ld", t->taskid, t->name, t->context, t, t->as, cycles, suffix,
+	printf("%-6" PRIu64 " %-12s %-3" PRIu32 " %18p %18p %9" PRIu64 "%c %9"
+		PRIu64 "%c %7ld %6ld", t->taskid, t->name, t->context, t, t->as,
 		ucycles, usuffix, kcycles, ksuffix, atomic_get(&t->refcount),
 		atomic_get(&t->active_calls));
@@ -461,14 +461,14 @@
 #ifdef __32_BITS__	
 	printf("taskid name         ctx address    as        "
-	    " cycles     ucycles    kcycles    threads calls  callee\n");
+	    " ucycles    kcycles    threads calls  callee\n");
 	printf("------ ------------ --- ---------- ----------"
-	    " ---------- ---------- ---------- ------- ------ ------>\n");
+	    " ---------- ---------- ------- ------ ------>\n");
 #endif
 
 #ifdef __64_BITS__
 	printf("taskid name         ctx address            as                "
-	    " cycles     ucycles    kcycles    threads calls  callee\n");
+	    " ucycles    kcycles    threads calls  callee\n");
 	printf("------ ------------ --- ------------------ ------------------"
-	    " ---------- ---------- ---------- ---------- ------- ------ ------>\n");
+	    " ---------- ---------- ---------- ------- ------ ------>\n");
 #endif
 
