summaryrefslogtreecommitdiff
path: root/test/exdatatest.c
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2018-05-09 17:09:50 +0200
committerKurt Roeckx <kurt@roeckx.be>2018-05-11 14:37:48 +0200
commit3cb7c5cfef25463bd197b0c12ca7966f525ebf73 (patch)
treee48a48cfd6aa0a3492cf6aec22de0e70f7284577 /test/exdatatest.c
parentd4a8ba77a4004b40890c4a9700ba959fd26af170 (diff)
downloadopenssl-new-3cb7c5cfef25463bd197b0c12ca7966f525ebf73.tar.gz
Use void in all function definitions that do not take any arguments
Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #6208
Diffstat (limited to 'test/exdatatest.c')
-rw-r--r--test/exdatatest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/exdatatest.c b/test/exdatatest.c
index 0ded7db673..6e90752df2 100644
--- a/test/exdatatest.c
+++ b/test/exdatatest.c
@@ -127,7 +127,7 @@ typedef struct myobj_st {
int st;
} MYOBJ;
-static MYOBJ *MYOBJ_new()
+static MYOBJ *MYOBJ_new(void)
{
static int count = 0;
MYOBJ *obj = OPENSSL_malloc(sizeof(*obj));