summaryrefslogtreecommitdiff
path: root/memcached.c
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2022-08-29 17:15:28 -0700
committerdormando <dormando@rydia.net>2022-10-13 16:45:23 -0700
commit0fca6e570802d18d0f4ef073ad8d90ad5522b4f0 (patch)
treeab25951ed44b6bdaf321fb50b1d2b873ada95c44 /memcached.c
parent1ba54b05a4a23d1acd85b5c14384ac8cbaed8478 (diff)
downloadmemcached-0fca6e570802d18d0f4ef073ad8d90ad5522b4f0.tar.gz
Fix function protypes for clang errors
clang-15+ has started diagnosing them as errors thread.c:925:18: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] | void STATS_UNLOCK() { | ^ | void Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'memcached.c')
-rw-r--r--memcached.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/memcached.c b/memcached.c
index 86ac064..2806afb 100644
--- a/memcached.c
+++ b/memcached.c
@@ -84,7 +84,7 @@ static int try_read_command_udp(conn *c);
static enum try_read_result try_read_network(conn *c);
static enum try_read_result try_read_udp(conn *c);
-static int start_conn_timeout_thread();
+static int start_conn_timeout_thread(void);
/* stats */
static void stats_init(void);
@@ -374,7 +374,7 @@ static void *conn_timeout_thread(void *arg) {
return NULL;
}
-static int start_conn_timeout_thread() {
+static int start_conn_timeout_thread(void) {
int ret;
if (settings.idle_timeout == 0)