summaryrefslogtreecommitdiff
path: root/src/gib_hash.h
diff options
context:
space:
mode:
authororbea <orbea@riseup.net>2022-10-16 09:04:55 -0700
committerDaniel Friesel <derf@chaosdorf.de>2023-01-22 08:57:01 +0100
commitafca52d96eb43e6ceec4e6976b1f90c367df27c9 (patch)
tree64ee5dd8c731b4c031ce29a1b638a2767e509718 /src/gib_hash.h
parentd65f3ba146fa7a6ccad2f3c1233becfda1c22b69 (diff)
src: Fix build with clang 16
These are no longer supported in upcoming clang versions. warning: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes] Reference: https://archives.gentoo.org/gentoo-dev/message/dd9f2d3082b8b6f8dfbccb0639e6e240
Diffstat (limited to 'src/gib_hash.h')
-rw-r--r--src/gib_hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gib_hash.h b/src/gib_hash.h
index 58506c8..125e280 100644
--- a/src/gib_hash.h
+++ b/src/gib_hash.h
@@ -55,7 +55,7 @@ gib_hash_node *gib_hash_node_new(char *key, void *data);
void gib_hash_node_free(gib_hash_node *node);
void gib_hash_node_free_and_data(gib_hash_node *node);
-gib_hash *gib_hash_new();
+gib_hash *gib_hash_new(void);
void gib_hash_free(gib_hash *hash);
void gib_hash_free_and_data(gib_hash *hash);