summaryrefslogtreecommitdiff
path: root/src/post/goom/goom_hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/post/goom/goom_hash.c')
-rw-r--r--src/post/goom/goom_hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post/goom/goom_hash.c b/src/post/goom/goom_hash.c
index 09052ed90..f21a6d6c3 100644
--- a/src/post/goom/goom_hash.c
+++ b/src/post/goom/goom_hash.c
@@ -57,7 +57,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;
return _this;