diff options
author | Zoltan Kiss <zoltan.kiss@citrix.com> | 2014-04-04 10:45:24 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-04-04 10:49:53 -0400 |
commit | 00aefceb2fffcf4ea2fbc97ef5d4f79ef2668ecc (patch) | |
tree | 0dacd7f925f36fff47c3f52f7392148f84049558 /drivers/net/xen-netback | |
parent | 65e71ff342f8c2c8a9962ebc1fbceef4c7a529e0 (diff) |
xen-netback: Trivial format string fix
There is a "%" after pending_idx instead of ":".
Signed-off-by: Zoltan Kiss <zoltan.kiss@citrix.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/xen-netback')
-rw-r--r-- | drivers/net/xen-netback/netback.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-netback/netback.c index 99c8f09b4654..76665405c5aa 100644 --- a/drivers/net/xen-netback/netback.c +++ b/drivers/net/xen-netback/netback.c | |||
@@ -956,7 +956,7 @@ static int xenvif_tx_check_gop(struct xenvif *vif, | |||
956 | if (unlikely(err)) { | 956 | if (unlikely(err)) { |
957 | if (net_ratelimit()) | 957 | if (net_ratelimit()) |
958 | netdev_dbg(vif->dev, | 958 | netdev_dbg(vif->dev, |
959 | "Grant copy of header failed! status: %d pending_idx% %u ref: %u\n", | 959 | "Grant copy of header failed! status: %d pending_idx: %u ref: %u\n", |
960 | (*gopp_copy)->status, | 960 | (*gopp_copy)->status, |
961 | pending_idx, | 961 | pending_idx, |
962 | (*gopp_copy)->source.u.ref); | 962 | (*gopp_copy)->source.u.ref); |
@@ -985,7 +985,7 @@ check_frags: | |||
985 | /* Error on this fragment: respond to client with an error. */ | 985 | /* Error on this fragment: respond to client with an error. */ |
986 | if (net_ratelimit()) | 986 | if (net_ratelimit()) |
987 | netdev_dbg(vif->dev, | 987 | netdev_dbg(vif->dev, |
988 | "Grant map of %d. frag failed! status: %d pending_idx% %u ref: %u\n", | 988 | "Grant map of %d. frag failed! status: %d pending_idx: %u ref: %u\n", |
989 | i, | 989 | i, |
990 | gop_map->status, | 990 | gop_map->status, |
991 | pending_idx, | 991 | pending_idx, |