aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2008-07-29 09:58:32 -0500
committerRusty Russell <rusty@rustcorp.com.au>2008-07-29 09:58:32 +1000
commit32c68e5c569fdf016b494ce2fc8eecf59b6881bd (patch)
treec61a79f3c34854a4ce9e6131352e05baec46c7b8 /Documentation
parentlguest: fix switcher_page leak on unload (diff)
downloadlinux-dev-32c68e5c569fdf016b494ce2fc8eecf59b6881bd.tar.xz
linux-dev-32c68e5c569fdf016b494ce2fc8eecf59b6881bd.zip
lguest: fix verbose printing of device features.
%02x is more appropriate for bytes than %08x. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/lguest/lguest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/lguest/lguest.c b/Documentation/lguest/lguest.c
index 82fafe0429fe..6ded39bfdbdb 100644
--- a/Documentation/lguest/lguest.c
+++ b/Documentation/lguest/lguest.c
@@ -960,10 +960,10 @@ static void update_device_status(struct device *dev)
verbose("Device %s OK: offered", dev->name);
for (i = 0; i < dev->desc->feature_len; i++)
- verbose(" %08x", get_feature_bits(dev)[i]);
+ verbose(" %02x", get_feature_bits(dev)[i]);
verbose(", accepted");
for (i = 0; i < dev->desc->feature_len; i++)
- verbose(" %08x", get_feature_bits(dev)
+ verbose(" %02x", get_feature_bits(dev)
[dev->desc->feature_len+i]);
if (dev->ready)