From b0a0432e8d26414d77cfeb81ab2e6c10896c6883 Mon Sep 17 00:00:00 2001 From: Dirk Engling Date: Mon, 13 Apr 2026 17:35:29 +0200 Subject: Silence warnings about function declaration without a prototype for functions taking void --- ot_udp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ot_udp.c') diff --git a/ot_udp.c b/ot_udp.c index 97ccd38..990868c 100644 --- a/ot_udp.c +++ b/ot_udp.c @@ -28,7 +28,7 @@ static uint32_t g_rijndael_round_key[44] = {0}; static uint32_t g_key_of_the_hour[2] = {0}; static ot_time g_hour_of_the_key; -static void udp_generate_rijndael_round_key() { +static void udp_generate_rijndael_round_key(void) { uint32_t key[16]; #ifdef WANT_ARC4RANDOM arc4random_buf(&key[0], sizeof(key)); -- cgit v1.2.3