summaryrefslogtreecommitdiffstats
path: root/test/asynciotest.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/asynciotest.c')
-rw-r--r--test/asynciotest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/asynciotest.c b/test/asynciotest.c
index e14747265d..d4edd94936 100644
--- a/test/asynciotest.c
+++ b/test/asynciotest.c
@@ -205,7 +205,7 @@ static int async_write(BIO *bio, const char *in, int inl)
/* Write any data we have left after fragmenting */
ret = 0;
if ((int)written < inl) {
- ret = BIO_write(next, in + written , inl - written);
+ ret = BIO_write(next, in + written, inl - written);
}
if (ret <= 0 && BIO_should_write(next))