From fec1339f9ffdbaa1d5d365a505ad09ddf118328a Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 2 Feb 2012 14:33:18 +0100 Subject: [PATCH] blkid: remove dead assigment Signed-off-by: Karel Zak --- misc-utils/blkid.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/misc-utils/blkid.c b/misc-utils/blkid.c index c7f2caf360..b0524ca64b 100644 --- a/misc-utils/blkid.c +++ b/misc-utils/blkid.c @@ -191,7 +191,8 @@ static void pretty_print_line(const char *device, const char *fs_type, len = pretty_print_word(device, device_len, 0, 1); len = pretty_print_word(fs_type, fs_type_len, len, 0); len = pretty_print_word(label, label_len, len, 0); - len = pretty_print_word(mtpt, mtpt_len, len, 0); + pretty_print_word(mtpt, mtpt_len, len, 0); + fputs(uuid, stdout); fputc('\n', stdout); } -- 2.47.2