[git commit] fdisk_gpt: simplify GPT partition name printing

Denys Vlasenko vda.linux at googlemail.com
Sun Nov 27 19:47:01 UTC 2016


commit: https://git.busybox.net/busybox/commit/?id=710b6ce9b0dba1b13028e7205bade70eefc2543f
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at 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 9b17b4a..45d2aa6 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
 }
 


More information about the busybox-cvs mailing list