diff options
author | Petri Hintukainen <phintuka@users.sourceforge.net> | 2013-09-30 13:11:19 +0300 |
---|---|---|
committer | Petri Hintukainen <phintuka@users.sourceforge.net> | 2013-09-30 13:11:19 +0300 |
commit | bfc3bb6964b849e819454970c4de0d415eaba493 (patch) | |
tree | 043a415cb7d79ccf9805ea781280e596fc8f63c4 /src/post/goom/goomsl_hash.c | |
parent | d812e93a5912b54fe8612f6c7f6481fad1579716 (diff) | |
download | xine-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.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; |