Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 01c20986 authored by Miguel Botón's avatar Miguel Botón Committed by David S. Miller
Browse files

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: default avatarMiguel Botón <mboton@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 93d2334f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}