Correct typo.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-04-28 18:18:03 +02:00
parent d72774f0f4
commit 58015f2a20
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 1 additions and 1 deletions

View File

@ -352,7 +352,7 @@ static sxi32 HashGrowTable(SyHash *pHash) {
} }
static sxi32 HashInsert(SyHash *pHash, SyHashEntry_Pr *pEntry) { static sxi32 HashInsert(SyHash *pHash, SyHashEntry_Pr *pEntry) {
sxu32 iBucket = pEntry->nHash & (pHash->nBucketSize - 1); sxu32 iBucket = pEntry->nHash & (pHash->nBucketSize - 1);
/* Insert the entry in its corresponding bcuket */ /* Insert the entry in its corresponding bucket */
pEntry->pNextCollide = pHash->apBucket[iBucket]; pEntry->pNextCollide = pHash->apBucket[iBucket];
if(pHash->apBucket[iBucket] != 0) { if(pHash->apBucket[iBucket] != 0) {
pHash->apBucket[iBucket]->pPrevCollide = pEntry; pHash->apBucket[iBucket]->pPrevCollide = pEntry;