commit | 3cb7c5cfef25463bd197b0c12ca7966f525ebf73 | [log] [tgz] |
---|---|---|
author | Kurt Roeckx <kurt@roeckx.be> | Wed May 09 17:09:50 2018 +0200 |
committer | Kurt Roeckx <kurt@roeckx.be> | Fri May 11 14:37:48 2018 +0200 |
tree | e48a48cfd6aa0a3492cf6aec22de0e70f7284577 | |
parent | d4a8ba77a4004b40890c4a9700ba959fd26af170 [diff] [blame] |
Use void in all function definitions that do not take any arguments Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #6208
diff --git a/ssl/pqueue.c b/ssl/pqueue.c index 29804ec..548a7a4 100644 --- a/ssl/pqueue.c +++ b/ssl/pqueue.c
@@ -35,7 +35,7 @@ OPENSSL_free(item); } -pqueue *pqueue_new() +pqueue *pqueue_new(void) { pqueue *pq = OPENSSL_zalloc(sizeof(*pq));