[PATCH] af_packet: Quiet sparse noise about using plain integer as NULL pointer
From: Ying Xue <hidden>
Date: 2012-08-07 02:27:02
Quiets the sparse warning: warning: Using plain integer as NULL pointer Signed-off-by: Ying Xue <redacted> --- net/packet/af_packet.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c
index ceaca7c..f016f66 100644
--- a/net/packet/af_packet.c
+++ b/net/packet/af_packet.c@@ -1079,7 +1079,7 @@ static void *packet_current_rx_frame(struct packet_sock *po, default: WARN(1, "TPACKET version not supported\n"); BUG(); - return 0; + return NULL; } }
--
1.7.1