diff options
Diffstat (limited to 'src/post/goom/goomsl_hash.c')
-rw-r--r-- | src/post/goom/goomsl_hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post/goom/goomsl_hash.c b/src/post/goom/goomsl_hash.c index af2ec44a6..07eed0f87 100644 --- a/src/post/goom/goomsl_hash.c +++ b/src/post/goom/goomsl_hash.c @@ -58,7 +58,7 @@ static HashValue *entry_get(GoomHashEntry *entry, const char *key) { return &(entry->value); } -GoomHash *goom_hash_new() { +GoomHash *goom_hash_new(void) { GoomHash *_this = (GoomHash*)malloc(sizeof(GoomHash)); _this->root = NULL; _this->number_of_puts = 0; |