added android target to makefile,fixed some log

This commit is contained in:
wangyu
2017-08-16 19:44:19 +08:00
parent fb5546f83b
commit 837de123b2
5 changed files with 20 additions and 11 deletions

View File

@@ -216,7 +216,7 @@ int auth_crc32_verify(const char *data,int &len)
{
if(len<int(sizeof(unsigned int)))
{
mylog(log_debug,"auth_crc32_verify len<16\n");
mylog(log_debug,"auth_crc32_verify len<%d\n",int(sizeof(unsigned int)));
return -1;
}
unsigned int ret=crc32h((unsigned char *)data,len-sizeof(unsigned int));