Index: uspace/app/usbinfo/dump.c
===================================================================
--- uspace/app/usbinfo/dump.c	(revision b1c6e58ba745c196849b41e8a430aabd7f1bbddf)
+++ uspace/app/usbinfo/dump.c	(revision e160da4d15699337ef066c7b2aa146e9cae810fc)
@@ -101,7 +101,6 @@
 }
 
-void dump_match_ids(match_id_list_t *matches)
+void dump_match_ids(match_id_list_t *matches, const char *line_prefix)
 {
-	printf("Match ids:\n");
 	link_t *link;
 	for (link = matches->ids.next;
@@ -110,5 +109,5 @@
 		match_id_t *match = list_get_instance(link, match_id_t, link);
 
-		printf(INDENT "%d %s\n", match->score, match->id);
+		printf("%s%d %s\n", line_prefix, match->score, match->id);
 	}
 }
