summaryrefslogtreecommitdiffstats
path: root/UsersTable.c
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2022-08-04 21:09:44 +0200
committercgzones <cgzones@googlemail.com>2022-08-09 20:30:05 +0200
commit9a4879b48f9ca1a39aa4eaa67bccc171cd5bca35 (patch)
treeea05b3a733209b83bcebc40a8f8af120ac8ebfca /UsersTable.c
parent3e1908b80ab214b7b449b49183d1bd5d39c174e3 (diff)
Please Clang 15
CRT.c:1015:14: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] void CRT_done() { ^ void
Diffstat (limited to 'UsersTable.c')
-rw-r--r--UsersTable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/UsersTable.c b/UsersTable.c
index 8c4a0ed0..6586a4b9 100644
--- a/UsersTable.c
+++ b/UsersTable.c
@@ -17,7 +17,7 @@ in the source distribution for its full text.
#include "XUtils.h"
-UsersTable* UsersTable_new() {
+UsersTable* UsersTable_new(void) {
UsersTable* this;
this = xMalloc(sizeof(UsersTable));
this->users = Hashtable_new(10, true);

© 2014-2024 Faster IT GmbH | imprint | privacy policy