diff options
author | Vladimir Dronnikov | 2009-11-01 23:05:09 +0100 |
---|---|---|
committer | Denys Vlasenko | 2009-11-01 23:05:09 +0100 |
commit | 662e8b79d011d022c40c717501b727c1480a105f (patch) | |
tree | 5eeaa6d5b67b12869669c31672553ff3314b43fd /util-linux/volume_id/get_devname.c | |
parent | e62a2463ecd4189c5097f5d96fff83300a387c60 (diff) | |
download | busybox-662e8b79d011d022c40c717501b727c1480a105f.zip busybox-662e8b79d011d022c40c717501b727c1480a105f.tar.gz |
volume_id: add support for btrfs
function old new delta
volume_id_probe_btrfs - 96 +96
fs2 48 52 +4
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 1/0 up/down: 100/0) Total: 100 bytes
Signed-off-by: Vladimir Dronnikov <dronnikov@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/volume_id/get_devname.c')
-rw-r--r-- | util-linux/volume_id/get_devname.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/volume_id/get_devname.c b/util-linux/volume_id/get_devname.c index 9b5283f..4d9f9ec 100644 --- a/util-linux/volume_id/get_devname.c +++ b/util-linux/volume_id/get_devname.c @@ -44,7 +44,7 @@ get_label_uuid(int fd, char **label, char **uuid) if (vid->label[0] != '\0' || vid->uuid[0] != '\0') { *label = xstrndup(vid->label, sizeof(vid->label)); *uuid = xstrndup(vid->uuid, sizeof(vid->uuid)); - dbg("found label '%s', uuid '%s' on %s", *label, *uuid, device); + dbg("found label '%s', uuid '%s'", *label, *uuid); rv = 0; } ret: |