diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2007-09-27 01:31:19 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:52:54 -0400 |
commit | 58c14a8fe64d047218522cf2f18a2d7f24c12f51 (patch) | |
tree | 7ba7d28052d0d30f7bc7d97ae6d11ebea2ee1c16 /net | |
parent | dcffde5345c917b98b094d0ef27f6280bc7d4655 (diff) |
[ATM] net/atm/lec.c: printk warning fix
net/atm/lec.c: In function 'lec_start_xmit':
net/atm/lec.c:371: warning: format '%x' expects type 'unsigned int', but argument 4 has type 'long unsigned int'
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/atm/lec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/atm/lec.c b/net/atm/lec.c index c909c76223e1..7eb1b21a0e94 100644 --- a/net/atm/lec.c +++ b/net/atm/lec.c | |||
@@ -368,7 +368,7 @@ static int lec_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
368 | #endif | 368 | #endif |
369 | entry = NULL; | 369 | entry = NULL; |
370 | vcc = lec_arp_resolve(priv, dst, is_rdesc, &entry); | 370 | vcc = lec_arp_resolve(priv, dst, is_rdesc, &entry); |
371 | pr_debug("%s:vcc:%p vcc_flags:%x, entry:%p\n", dev->name, | 371 | pr_debug("%s:vcc:%p vcc_flags:%lx, entry:%p\n", dev->name, |
372 | vcc, vcc ? vcc->flags : 0, entry); | 372 | vcc, vcc ? vcc->flags : 0, entry); |
373 | if (!vcc || !test_bit(ATM_VF_READY, &vcc->flags)) { | 373 | if (!vcc || !test_bit(ATM_VF_READY, &vcc->flags)) { |
374 | if (entry && (entry->tx_wait.qlen < LEC_UNRES_QUE_LEN)) { | 374 | if (entry && (entry->tx_wait.qlen < LEC_UNRES_QUE_LEN)) { |