]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
lguest: fix verbose printing of device features.
authorRusty Russell <rusty@rustcorp.com.au>
Tue, 29 Jul 2008 14:58:32 +0000 (09:58 -0500)
committerRusty Russell <rusty@rustcorp.com.au>
Mon, 28 Jul 2008 23:58:32 +0000 (09:58 +1000)
%02x is more appropriate for bytes than %08x.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Documentation/lguest/lguest.c

index 82fafe0429fed8dc441411059be52b33154dd8a8..6ded39bfdbdb3319237337287135d7cf67af0552 100644 (file)
@@ -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)