mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-14 00:21:16 +00:00
* Fix some compiler warnings
This commit is contained in:
parent
4056c90358
commit
fc05ba7f46
1 changed files with 2 additions and 2 deletions
|
@ -381,8 +381,8 @@ SVC_HashForAddress
|
||||||
================
|
================
|
||||||
*/
|
*/
|
||||||
static long SVC_HashForAddress( netadr_t address ) {
|
static long SVC_HashForAddress( netadr_t address ) {
|
||||||
byte *ip;
|
byte *ip = NULL;
|
||||||
size_t size;
|
size_t size = 0;
|
||||||
int i;
|
int i;
|
||||||
long hash = 0;
|
long hash = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue