From: John Hodge Date: Wed, 10 Jul 2013 16:52:01 +0000 (+0800) Subject: Modules/IPStack - Fixed unused variable in udp X-Git-Tag: rel0.15~367 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=b35a37b73068a05d95c70af28e8731bece16e02e;p=tpg%2Facess2.git Modules/IPStack - Fixed unused variable in udp --- diff --git a/KernelLand/Modules/IPStack/udp.c b/KernelLand/Modules/IPStack/udp.c index ccd32bcc..6aba50e3 100644 --- a/KernelLand/Modules/IPStack/udp.c +++ b/KernelLand/Modules/IPStack/udp.c @@ -407,7 +407,6 @@ void UDP_Channel_Close(tVFS_Node *Node) Uint16 UDP_int_AllocatePort(tUDPChannel *Channel) { Mutex_Acquire(&glUDP_Ports); - int i; // Fast Search for( int base = UDP_ALLOC_BASE; base < 0x10000; base += 32 ) {