From 710b6ce9b0dba1b13028e7205bade70eefc2543f Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sun, 27 Nov 2016 20:47:01 +0100 Subject: fdisk_gpt: simplify GPT partition name printing Signed-off-by: Denys Vlasenko --- util-linux/fdisk_gpt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'util-linux/fdisk_gpt.c') 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