From: Karel Zak Date: Thu, 2 Feb 2012 13:33:18 +0000 (+0100) Subject: blkid: remove dead assigment X-Git-Tag: v2.21-rc2~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fec1339f9ffdbaa1d5d365a505ad09ddf118328a;p=thirdparty%2Futil-linux.git blkid: remove dead assigment Signed-off-by: Karel Zak --- 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); }