Commit 99aa3473 authored by Ying Xue's avatar Ying Xue Committed by David S. Miller

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: default avatarYing Xue <ying.xue@windriver.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b9ad2baf
...@@ -1079,7 +1079,7 @@ static void *packet_current_rx_frame(struct packet_sock *po, ...@@ -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;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment