dect
/
linux-2.6
Archived
13
0
Fork 0

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:
WARN(1, "TPACKET version not supported\n");
BUG();
return 0;
return NULL;
}
}