From 9cae6b1c78725360d5fbf7c507559532104cead0 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Tue, 21 Feb 2017 18:46:05 -0500 Subject: Explicitly specify void argument to functions which take no arguments. --- src/gensvm_queue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gensvm_queue.c') diff --git a/src/gensvm_queue.c b/src/gensvm_queue.c index a72a656..ffa2a82 100644 --- a/src/gensvm_queue.c +++ b/src/gensvm_queue.c @@ -35,7 +35,7 @@ * * @returns initialized GenQueue */ -struct GenQueue *gensvm_init_queue() +struct GenQueue *gensvm_init_queue(void) { struct GenQueue *q = Malloc(struct GenQueue, 1); -- cgit v1.2.3