summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>2023-08-06 19:44:37 +0200
committerTomas Mraz <tomas@openssl.org>2023-09-11 10:15:30 +0200
commite22ebb893e2f44bd08f69f9ce4ccfc5e4d2990e2 (patch)
tree13268f1fb9c3f95b6e4cf8bb3631af0b9c97264f /apps
parentbbaeadb068c3289c7df3b7bea0049f70a648ba00 (diff)
Bad function definition
void f() should probably be void f(void) Found by running the checkpatch.pl Linux script to enforce coding style. Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21468)
Diffstat (limited to 'apps')
-rw-r--r--apps/s_server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/s_server.c b/apps/s_server.c
index 1dc04d0060..93f6cb2983 100644
--- a/apps/s_server.c
+++ b/apps/s_server.c
@@ -266,7 +266,7 @@ typedef struct {
char buff[1];
} EBCDIC_OUTBUFF;
-static const BIO_METHOD *BIO_f_ebcdic_filter()
+static const BIO_METHOD *BIO_f_ebcdic_filter(void)
{
if (methods_ebcdic == NULL) {
methods_ebcdic = BIO_meth_new(BIO_TYPE_EBCDIC_FILTER,