aboutsummaryrefslogtreecommitdiff
path: root/src/gensvm_queue.c
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2017-02-21 18:46:05 -0500
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2017-02-21 18:46:05 -0500
commit9cae6b1c78725360d5fbf7c507559532104cead0 (patch)
treed682ebd39f1539dc4affa6c9c9d71a10fb8eeb71 /src/gensvm_queue.c
parentMinor fixes (diff)
downloadgensvm-9cae6b1c78725360d5fbf7c507559532104cead0.tar.gz
gensvm-9cae6b1c78725360d5fbf7c507559532104cead0.zip
Explicitly specify void argument to functions which take
no arguments.
Diffstat (limited to 'src/gensvm_queue.c')
-rw-r--r--src/gensvm_queue.c2
1 files changed, 1 insertions, 1 deletions
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);