From: Martin Mares Date: Tue, 10 Dec 2013 19:54:34 +0000 (+0100) Subject: Fixed a typo in messages printed in map mode X-Git-Tag: v3.3.0~35 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=6e0e7f4df5c7b778ee56ecf2ddec13bc8ec250c3;p=pciutils.git Fixed a typo in messages printed in map mode --- diff --git a/ls-map.c b/ls-map.c index 3044d6f..c3ef54b 100644 --- a/ls-map.c +++ b/ls-map.c @@ -38,7 +38,7 @@ map_bridge(struct bus_info *bi, struct device *d, int np, int ns, int nl) b->func = p->func; b->first = get_conf_byte(d, ns); b->last = get_conf_byte(d, nl); - printf("## %02x.%02x:%d is a bridge from %02x to %02x-%02x\n", + printf("## %02x:%02x.%d is a bridge from %02x to %02x-%02x\n", p->bus, p->dev, p->func, b->this, b->first, b->last); if (b->this != p->bus) printf("!!! Bridge points to invalid primary bus.\n");