Skip to content

Commit a359cdc

Browse files
committed
Fix BIO_meth_get_ctrl arguments swapped with return type
1 parent f85bedc commit a359cdc

File tree

1 file changed

+1
-1
lines changed
  • source/deimos/openssl

1 file changed

+1
-1
lines changed

source/deimos/openssl/bio.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ int BIO_meth_set_puts(BIO_METHOD *biom,
779779
int function(BIO_METHOD *biom) BIO_meth_get_gets(BIO *, char *, int);
780780
int BIO_meth_set_gets(BIO_METHOD *biom,
781781
int function(BIO *, char *, int) gets);
782-
c_long function(BIO_METHOD *biom) BIO_meth_get_ctrl(BIO *, int, c_long, void *);
782+
c_long function(BIO *, int, c_long, void *) BIO_meth_get_ctrl(BIO_METHOD *biom);
783783
int BIO_meth_set_ctrl(BIO_METHOD *biom,
784784
c_long function(BIO *, int, c_long, void *) ctrl);
785785
int function(BIO_METHOD *bion) BIO_meth_get_create(BIO *);

0 commit comments

Comments
 (0)