From 710b6ce9b0dba1b13028e7205bade70eefc2543f Mon Sep 17 00:00:00 2001
From: Denys Vlasenko <vda.linux@googlemail.com>
Date: Sun, 27 Nov 2016 20:47:01 +0100
Subject: fdisk_gpt: simplify GPT partition name printing

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
---
 util-linux/fdisk_gpt.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/util-linux/fdisk_gpt.c b/util-linux/fdisk_gpt.c
index 9b17b4a57..45d2aa6e7 100644
--- a/util-linux/fdisk_gpt.c
+++ b/util-linux/fdisk_gpt.c
@@ -94,11 +94,11 @@ gpt_print_wide36(uint16_t *s)
 	while (i < ARRAY_SIZE(buf)-1) {
 		if (s[i] == 0)
 			break;
-		buf[i] = (s[i] < 0x7f) ? s[i] : '?';
+		buf[i] = (0x20 <= s[i] && s[i] < 0x7f) ? s[i] : '?';
 		i++;
 	}
 	buf[i] = '\0';
-	fputs(printable_string(NULL, buf), stdout);
+	fputs(buf, stdout);
 #endif
 }
 
-- 
cgit v1.2.3-55-g6feb