Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=58c14a8fe64d047218522cf2f18a2d7f24c12f51
Commit:     58c14a8fe64d047218522cf2f18a2d7f24c12f51
Parent:     dcffde5345c917b98b094d0ef27f6280bc7d4655
Author:     Andrew Morton <[EMAIL PROTECTED]>
AuthorDate: Wed Sep 26 22:31:19 2007 -0700
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Wed Oct 10 16:52:54 2007 -0700

    [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 <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 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 c909c76..7eb1b21 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)
 #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)) {
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to