Index: uspace/app/tmon/main.c
===================================================================
--- uspace/app/tmon/main.c	(revision 0fbe27d1d60c8b0ddc8c6b3bcb01514adf2a9e1b)
+++ uspace/app/tmon/main.c	(revision d0d8e590c77980315607e5c4ef171b433405e547)
@@ -54,20 +54,20 @@
 	{
 		.name = "stress-intr-in",
-		.description = "Stress benchmark interrupt in endpoints of a diagnostic device.",
+		.description = "Stress benchmark interrupt in endpoints of a device.",
 		.action = tmon_stress_intr_in,
 	},
 	{
 		.name = "stress-intr-out",
-		.description = "Stress benchmark interrupt out endpoints of a diagnostic device.",
+		.description = "Stress benchmark interrupt out endpoints of a device.",
 		.action = tmon_stress_intr_out,
 	},
 	{
 		.name = "stress-bulk-in",
-		.description = "Stress benchmark bulk in endpoints of a diagnostic device.",
+		.description = "Stress benchmark bulk in endpoints of a device.",
 		.action = tmon_stress_bulk_in,
 	},
 	{
 		.name = "stress-bulk-out",
-		.description = "Stress benchmark bulk out endpoints of a diagnostic device.",
+		.description = "Stress benchmark bulk out endpoints of a device.",
 		.action = tmon_stress_bulk_out,
 	},
Index: uspace/app/tmon/test.c
===================================================================
--- uspace/app/tmon/test.c	(revision 0fbe27d1d60c8b0ddc8c6b3bcb01514adf2a9e1b)
+++ uspace/app/tmon/test.c	(revision d0d8e590c77980315607e5c4ef171b433405e547)
@@ -98,5 +98,5 @@
 	printf("Executing interrupt in stress test.\n"
 	    "      Packet count: %d\n"
-	    "      Packet size: %ld", cycles, size);
+	    "      Packet size: %ld\n", cycles, size);
 
 	int rc = usbdiag_stress_intr_in(exch, cycles, size);
@@ -113,5 +113,5 @@
 	printf("Executing interrupt out stress test.\n"
 	    "      Packet count: %d\n"
-	    "      Packet size: %ld", cycles, size);
+	    "      Packet size: %ld\n", cycles, size);
 
 	int rc = usbdiag_stress_intr_out(exch, cycles, size);
@@ -128,5 +128,5 @@
 	printf("Executing bulk in stress test.\n"
 	    "      Packet count: %d\n"
-	    "      Packet size: %ld", cycles, size);
+	    "      Packet size: %ld\n", cycles, size);
 
 	int rc = usbdiag_stress_bulk_in(exch, cycles, size);
@@ -143,5 +143,5 @@
 	printf("Executing bulk out stress test.\n"
 	    "      Packet count: %d\n"
-	    "      Packet size: %ld", cycles, size);
+	    "      Packet size: %ld\n", cycles, size);
 
 	int rc = usbdiag_stress_bulk_out(exch, cycles, size);
