diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2014-06-17 19:09:31 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2014-06-17 19:09:31 +0000 |
commit | 8b05179083f4af083d36eaed41a64ac0e942eac7 (patch) | |
tree | 0c7bc27ad897538d496cfeaa5f9e5c402def80e4 /src | |
parent | 522af8962fcec499cfb557ae55236e5dbbbb64d9 (diff) |
Fixed "old-style function definition" warning.
Diffstat (limited to 'src')
-rw-r--r-- | src/coucal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coucal.c b/src/coucal.c index 82dfeff..93bad6e 100644 --- a/src/coucal.c +++ b/src/coucal.c @@ -1453,7 +1453,7 @@ size_t coucal_memory_size(coucal hashtable) { return size_struct + hash_size + pool_size; } -size_t coucal_hash_size() { +size_t coucal_hash_size(void) { return COUCAL_HASH_SIZE; } |