xen-netback: Trivial format string fix
authorZoltan Kiss <zoltan.kiss@citrix.com>
Fri, 4 Apr 2014 14:45:24 +0000 (15:45 +0100)
committerDavid S. Miller <davem@davemloft.net>
Fri, 4 Apr 2014 14:49:53 +0000 (10:49 -0400)
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>
drivers/net/xen-netback/netback.c

index 99c8f09b465437318d69010bb199741adf8bbbdc..76665405c5aac32d57eeadf355007cbb2b50cbec 100644 (file)
@@ -956,7 +956,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);
@@ -985,7 +985,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,
This page took 0.039227 seconds and 5 git commands to generate.