diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-11 12:20:21 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-11 12:20:21 +0000 |
commit | 1e2edac547910d9a2e9b8376d9b7b3d98895e578 (patch) | |
tree | 7ae72f46daf5ec2e8b992d0decd54be138867f08 /lib/libcrypto/evp/bio_b64.c | |
parent | c7b199898c63385c578e7df98c5b39284d110f37 (diff) |
More KNF.
Diffstat (limited to 'lib/libcrypto/evp/bio_b64.c')
-rw-r--r-- | lib/libcrypto/evp/bio_b64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcrypto/evp/bio_b64.c b/lib/libcrypto/evp/bio_b64.c index f963b606d2a..465753cf16f 100644 --- a/lib/libcrypto/evp/bio_b64.c +++ b/lib/libcrypto/evp/bio_b64.c @@ -147,7 +147,7 @@ b64_free(BIO *a) static int b64_read(BIO *b, char *out, int outl) { - int ret = 0, i, ii, j,k, x,n, num, ret_code = 0; + int ret = 0, i, ii, j, k, x, n, num, ret_code = 0; BIO_B64_CTX *ctx; unsigned char *p, *q; |