[PATCH] xen-netback: Trivial format string fix

From: Zoltan Kiss
Date: Fri Apr 04 2014 - 10:45:51 EST


There is a "%" after pending_idx instead of ":".

Signed-off-by: Zoltan Kiss <zoltan.kiss@xxxxxxxxxx>
---

diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-netback/netback.c
index 8d3bb4a..51695e2 100644
--- a/drivers/net/xen-netback/netback.c
+++ b/drivers/net/xen-netback/netback.c
@@ -955,7 +955,7 @@ static int xenvif_tx_check_gop(struct xenvif *vif,
if (unlikely(err)) {
if (net_ratelimit())
netdev_dbg(vif->dev,
- "Grant copy of header failed! status: %d pending_idx% %u ref: %u\n",
+ "Grant copy of header failed! status: %d pending_idx: %u ref: %u\n",
(*gopp_copy)->status,
pending_idx,
(*gopp_copy)->source.u.ref);
@@ -984,7 +984,7 @@ check_frags:
/* Error on this fragment: respond to client with an error. */
if (net_ratelimit())
netdev_dbg(vif->dev,
- "Grant map of %d. frag failed! status: %d pending_idx% %u ref: %u\n",
+ "Grant map of %d. frag failed! status: %d pending_idx: %u ref: %u\n",
i,
gop_map->status,
pending_idx,
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/