Skip to content

Commit

Permalink
env: use new hashtable prototype
Browse files Browse the repository at this point in the history
Signed-off-by: Eduardo Silva <[email protected]>
  • Loading branch information
edsiper committed Nov 22, 2017
1 parent 60ead7c commit dfe6a70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/flb_env.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ struct flb_env *flb_env_create()
}

/* Create the hash-table */
ht = flb_hash_create(FLB_ENV_SIZE);
ht = flb_hash_create(FLB_ENV_SIZE, FLB_HASH_EVICT_NONE, -1);
if (!ht) {
flb_free(env);
return NULL;
Expand Down

0 comments on commit dfe6a70

Please sign in to comment.