Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=01c20986cb2c2aa9c66603e9be14be5ebae99aca
Commit:     01c20986cb2c2aa9c66603e9be14be5ebae99aca
Parent:     93d2334f3773c0d4e8dfafdb394f73bb1bdf0cc9
Author:     Miguel Botón <[EMAIL PROTECTED]>
AuthorDate: Fri Jan 4 23:34:35 2008 +0100
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Mon Jan 28 15:09:29 2008 -0800

    iwlwifi: fix compilation warning in 'iwl-4965.c'
    
    This patch fixes a compilation warning in 'iwl-4965.c'.
    
    "warning: format ‘%d’ expects type ‘int’, but argument 3 has type ‘long 
unsigned int’"
    
    Signed-off-by: Miguel Botón <[EMAIL PROTECTED]
    Signed-off-by: John W. Linville <[EMAIL PROTECTED]>
---
 drivers/net/wireless/iwlwifi/iwl-4965.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c 
b/drivers/net/wireless/iwlwifi/iwl-4965.c
index 74999af..0f58aca 100644
--- a/drivers/net/wireless/iwlwifi/iwl-4965.c
+++ b/drivers/net/wireless/iwlwifi/iwl-4965.c
@@ -3616,7 +3616,7 @@ static void iwl4965_add_radiotap(struct iwl4965_priv 
*priv,
        if (skb_headroom(skb) < sizeof(*iwl4965_rt)) {
                if (net_ratelimit())
                        printk(KERN_ERR "not enough headroom [%d] for "
-                              "radiotap head [%d]\n",
+                              "radiotap head [%zd]\n",
                               skb_headroom(skb), sizeof(*iwl4965_rt));
                return;
        }
-
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