mirror of
https://github.com/reactos/reactos.git
synced 2025-01-02 20:43:18 +00:00
fix
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:
parent
d204e60565
commit
ee97250d94
1 changed files with 2 additions and 1 deletions
|
@ -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));
|
||||
|
||||
|
|
Loading…
Reference in a new issue