compilation warnings fixed

This commit is contained in:
mom040267 2014-04-30 06:37:51 +00:00
parent 48534765fd
commit 4843e4bbda
2 changed files with 3 additions and 1 deletions

View File

@ -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)

View File

@ -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;
}