summaryrefslogtreecommitdiffstats
path: root/misc-utils/blkid.c
diff options
context:
space:
mode:
authorKarel Zak2012-02-02 14:33:18 +0100
committerKarel Zak2012-02-02 14:33:18 +0100
commitfec1339f9ffdbaa1d5d365a505ad09ddf118328a (patch)
tree7f9b24c990f7b4d6b64028d19ce313ca86611be7 /misc-utils/blkid.c
parentlib/loopdev: fix part scan detection code (diff)
downloadkernel-qcow2-util-linux-fec1339f9ffdbaa1d5d365a505ad09ddf118328a.tar.gz
kernel-qcow2-util-linux-fec1339f9ffdbaa1d5d365a505ad09ddf118328a.tar.xz
kernel-qcow2-util-linux-fec1339f9ffdbaa1d5d365a505ad09ddf118328a.zip
blkid: remove dead assigment
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'misc-utils/blkid.c')
-rw-r--r--misc-utils/blkid.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/misc-utils/blkid.c b/misc-utils/blkid.c
index c7f2caf36..b0524ca64 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);
}