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:
parent
b9ad2baf91
commit
99aa3473e6
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue