]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
blkid: remove dead assigment
authorKarel Zak <kzak@redhat.com>
Thu, 2 Feb 2012 13:33:18 +0000 (14:33 +0100)
committerKarel Zak <kzak@redhat.com>
Thu, 2 Feb 2012 13:33:18 +0000 (14:33 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
misc-utils/blkid.c

index c7f2caf36035a73c0b5d7bf43c8a5ae6d776a902..b0524ca64b8d06ee3b7b4e7207f9363487cff9f9 100644 (file)
@@ -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);
 }