From: Andrew Morton 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' Cc: "David S. Miller" Signed-off-by: Andrew Morton --- net/atm/lec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN net/atm/lec.c~net-atm-lecc-printk-warning-fix net/atm/lec.c --- a/net/atm/lec.c~net-atm-lecc-printk-warning-fix +++ a/net/atm/lec.c @@ -367,7 +367,7 @@ static int lec_start_xmit(struct sk_buff #endif entry = NULL; vcc = lec_arp_resolve(priv, dst, is_rdesc, &entry); - pr_debug("%s:vcc:%p vcc_flags:%x, entry:%p\n", dev->name, + pr_debug("%s:vcc:%p vcc_flags:%lx, entry:%p\n", dev->name, vcc, vcc ? vcc->flags : 0, entry); if (!vcc || !test_bit(ATM_VF_READY, &vcc->flags)) { if (entry && (entry->tx_wait.qlen < LEC_UNRES_QUE_LEN)) { _