fix a function pointer usage not accepted on some compilers

This commit is contained in:
Stefan Frederik 2022-02-01 12:30:10 +01:00
parent 84ca1f2d43
commit bc03dedbca
2 changed files with 5 additions and 5 deletions

View File

@ -82,7 +82,7 @@ static Inst_hashentry *inst_hash_lookup(char *token, int value, int what, size_t
}
return NULL; /* token was not in hash */
}
if( entry->hash==hashcode && !xctx->strcmp(token,entry->token) ) { /* found a matching token */
if( entry->hash==hashcode && !strcmp(token,entry->token) ) { /* found a matching token */
if(what == XDELETE) { /* remove token from the hash table ... */
saveptr=entry->next;
my_free(969, &entry);

File diff suppressed because one or more lines are too long