gcc 3.3.x stop comiling and give a error msg
network/icmp.c: In function `SendICMPComplete':
network/icmp.c:28: warning: unused variable `IPPacket'
make[1]: *** [network/icmp.o] Error 1
make: *** [tcpip] Error 2

svn path=/trunk/; revision=10615
This commit is contained in:
Magnus Olsen 2004-08-20 09:44:20 +00:00
parent d204e60565
commit ee97250d94

View file

@ -25,7 +25,8 @@ VOID SendICMPComplete(
* This routine is called by IP when a ICMP send completes
*/
{
PIP_PACKET IPPacket = (PIP_PACKET)Context;
PIP_PACKET IPPacket = NULL;
IPPacket =(PIP_PACKET)Context;
TI_DbgPrint(DEBUG_ICMP, ("Freeing NDIS packet (%X).\n", Packet));