diff options
author | FdaSilvaYY <fdasilvayy@gmail.com> | 2016-08-24 00:17:31 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2017-01-25 10:06:34 +0100 |
commit | 28b86f313b43cc70d11054d3830ef82e7af8290a (patch) | |
tree | 20743c03a976c242810d0a60675c994b724b7640 /test/asynciotest.c | |
parent | s_client: Better response success check for CONNECT (diff) | |
download | openssl-28b86f313b43cc70d11054d3830ef82e7af8290a.tar.xz openssl-28b86f313b43cc70d11054d3830ef82e7af8290a.zip |
Fix some extra or missing whitespaces...
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1618)
Diffstat (limited to 'test/asynciotest.c')
-rw-r--r-- | test/asynciotest.c | 2 |
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)) |