compilation warnings fixed
This commit is contained in:
parent
48534765fd
commit
4843e4bbda
@ -2895,6 +2895,8 @@ int adminuser(u08bits *user, u08bits *realm, u08bits *pwd, u08bits *secret, u08b
|
||||
|
||||
void auth_ping(redis_context_handle rch)
|
||||
{
|
||||
UNUSED_ARG(rch);
|
||||
|
||||
donot_print_connection_success = 1;
|
||||
|
||||
#if !defined(TURN_NO_PQ)
|
||||
|
||||
@ -90,7 +90,7 @@ u32bits hash_int32(u32bits a)
|
||||
u64bits hash_int64(u64bits a)
|
||||
{
|
||||
a = a ^ (a>>4);
|
||||
a = (a^0xdeadbeefdeadbeef) + (a<<5);
|
||||
a = (a^0xdeadbeefdeadbeefLL) + (a<<5);
|
||||
a = a ^ (a>>11);
|
||||
return a;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user