Index: uspace/app/uptime/uptime.c
===================================================================
--- uspace/app/uptime/uptime.c	(revision a80687e5d0c412f3bad3c9783431cf59986f9006)
+++ uspace/app/uptime/uptime.c	(revision fce3536ed6e901725440a6a9403d237da8f0e39a)
@@ -59,5 +59,5 @@
 	
 	sysarg_t uptime = get_stats_uptime();
-	printf(", up %u days, %02u:%02u:%02u", uptime / DAY,
+	printf(", up %u days, %u hours %u minutes, %u seconds", uptime / DAY,
 	    (uptime % DAY) / HOUR, (uptime % HOUR) / MINUTE, uptime % MINUTE);
 	
@@ -65,5 +65,5 @@
 	load_t *load = get_stats_load(&count);
 	if (load != NULL) {
-		printf(", load avarage: ");
+		printf(", load average: ");
 		
 		size_t i;
