From 3b5d1a8f495d5b6bda72f9962516d5a1e273481b Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Thu, 9 Feb 2023 17:38:29 +0100 Subject: lib: Fix prototypes missing 'void' Found by Clang version 15. Signed-off-by: Dimitri Staessens Signed-off-by: Sander Vrijders --- src/lib/dev.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib/dev.c') diff --git a/src/lib/dev.c b/src/lib/dev.c index 8bc840a5..a68af46e 100644 --- a/src/lib/dev.c +++ b/src/lib/dev.c @@ -1466,7 +1466,7 @@ ssize_t flow_read(int fd, /* fqueue functions. */ -struct flow_set * fset_create() +struct flow_set * fset_create(void) { struct flow_set * set; @@ -1509,7 +1509,7 @@ void fset_destroy(struct flow_set * set) free(set); } -struct fqueue * fqueue_create() +struct fqueue * fqueue_create(void) { struct fqueue * fq = malloc(sizeof(*fq)); if (fq == NULL) @@ -1929,7 +1929,7 @@ int ipcp_flow_read(int fd, assert(flow->flow_id >= 0); - while ((idx = frcti_queued_pdu(flow->frcti)) < 0) { + while (frcti_queued_pdu(flow->frcti) < 0) { pthread_rwlock_unlock(&ai.lock); idx = flow_rx_sdb(flow, sdb, false, NULL); -- cgit v1.2.3