Index: uspace/app/hrctl/hrctl.c
===================================================================
--- uspace/app/hrctl/hrctl.c	(revision 2de7c1f42832a758c43a26c5f55015317a282d6d)
+++ uspace/app/hrctl/hrctl.c	(revision f93b8869b5d428bc14924ef520d09b4aa3efa60e)
@@ -641,5 +641,5 @@
 	const char *devname;
 
-	printf("volume: \"%s\" (%" PRIun ")\n", info->devname, info->svc_id);
+	printf("volume: '%s' (%" PRIun ")\n", info->devname, info->svc_id);
 
 	printf("|   metadata type: %s\n",
@@ -652,8 +652,8 @@
 	if (info->strip_size > 0) {
 		if (info->strip_size < 1024) {
-			printf("|      strip size: %" PRIu32 "B\n",
+			printf("|      strip size: %" PRIu32 " B\n",
 			    info->strip_size);
 		} else {
-			printf("|      strip size: %" PRIu32 "KiB\n",
+			printf("|      strip size: %" PRIu32 " KiB\n",
 			    info->strip_size / 1024);
 		}
@@ -663,5 +663,5 @@
 	printf("|no. of hotspares: %zu\n", info->hotspare_no);
 	printf("|number of blocks: %" PRIu64 "\n", info->data_blkno);
-	printf("|      block size: %zuB\n", info->bsize);
+	printf("|      block size: %zu B\n", info->bsize);
 
 	capa_spec_t capa;
@@ -763,5 +763,5 @@
 				return EXIT_FAILURE;
 			}
-			printf("volume \"%s\" (%" PRIun ") %s\n", devname,
+			printf("volume '%s' (%" PRIun ") %s\n", devname,
 			    svc_id, hr_get_vol_state_str(state));
 
