af_packet: Quiet sparse noise about using plain integer as NULL pointer

Quiets the sparse warning:
warning: Using plain integer as NULL pointer

Signed-off-by: Ying Xue <ying.xue@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Ying Xue 2012-08-06 16:27:10 +00:00 committed by David S. Miller
parent b9ad2baf91
commit 99aa3473e6
1 changed files with 1 additions and 1 deletions

View File

@ -1079,7 +1079,7 @@ static void *packet_current_rx_frame(struct packet_sock *po,
default: default:
WARN(1, "TPACKET version not supported\n"); WARN(1, "TPACKET version not supported\n");
BUG(); BUG();
return 0; return NULL;
} }
} }