Index: uspace/app/usbinfo/dump.c
===================================================================
--- uspace/app/usbinfo/dump.c	(revision d0dcfa805c461b26de5e3796161c863c6f7ebd4f)
+++ uspace/app/usbinfo/dump.c	(revision 6298d806bfbee483788e8fa047dce6116a5deda6)
@@ -53,5 +53,5 @@
 
 
-static const char *get_indent(size_t level)
+const char *get_indent(size_t level)
 {
 	static const char *indents[] = {
Index: uspace/app/usbinfo/info.c
===================================================================
--- uspace/app/usbinfo/info.c	(revision d0dcfa805c461b26de5e3796161c863c6f7ebd4f)
+++ uspace/app/usbinfo/info.c	(revision 6298d806bfbee483788e8fa047dce6116a5deda6)
@@ -156,5 +156,6 @@
 		l18_win_locales_t lang = langs[i];
 
-		printf("  String for language 0x%04x:\n", (int) lang);
+		printf("%sStrings for language 0x%04x:\n", get_indent(0),
+		    (int) lang);
 
 		/*
@@ -177,5 +178,6 @@
 				continue;
 			}
-			printf("    String #%zu: \"%s\"\n", idx, string);
+			printf("%sString #%zu: \"%s\"\n", get_indent(1),
+			    idx, string);
 			free(string);
 			failed_count = 0; /* Reset failed counter. */
Index: uspace/app/usbinfo/usbinfo.h
===================================================================
--- uspace/app/usbinfo/usbinfo.h	(revision d0dcfa805c461b26de5e3796161c863c6f7ebd4f)
+++ uspace/app/usbinfo/usbinfo.h	(revision 6298d806bfbee483788e8fa047dce6116a5deda6)
@@ -45,4 +45,5 @@
 
 void dump_buffer(const char *, size_t, const uint8_t *, size_t);
+const char *get_indent(size_t);
 void dump_match_ids(match_id_list_t *matches);
 void dump_usb_descriptor(uint8_t *, size_t);
