summaryrefslogtreecommitdiff
path: root/src/post/goom/goomsl_hash.c
diff options
context:
space:
mode:
authorPetri Hintukainen <phintuka@users.sourceforge.net>2013-09-30 13:11:19 +0300
committerPetri Hintukainen <phintuka@users.sourceforge.net>2013-09-30 13:11:19 +0300
commitbfc3bb6964b849e819454970c4de0d415eaba493 (patch)
tree043a415cb7d79ccf9805ea781280e596fc8f63c4 /src/post/goom/goomsl_hash.c
parentd812e93a5912b54fe8612f6c7f6481fad1579716 (diff)
downloadxine-lib-bfc3bb6964b849e819454970c4de0d415eaba493.tar.gz
xine-lib-bfc3bb6964b849e819454970c4de0d415eaba493.tar.bz2
goom: fix declarations of functions without parameters
Diffstat (limited to 'src/post/goom/goomsl_hash.c')
-rw-r--r--src/post/goom/goomsl_hash.c2
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;