* [PATCH] xen-netback: Trivial format string fix
@ 2014-04-04 14:45 Zoltan Kiss
2014-04-04 14:50 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Zoltan Kiss @ 2014-04-04 14:45 UTC (permalink / raw)
To: ian.campbell, wei.liu2, xen-devel
Cc: trivial, netdev, linux-kernel, Zoltan Kiss
There is a "%" after pending_idx instead of ":".
Signed-off-by: Zoltan Kiss <zoltan.kiss@citrix.com>
---
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,
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-04-04 14:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-04 14:45 [PATCH] xen-netback: Trivial format string fix Zoltan Kiss
2014-04-04 14:50 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).