diff options
author | Pauli <pauli@openssl.org> | 2021-06-18 11:46:16 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2021-06-19 07:54:06 +0200 |
commit | 43c02d9ce267fce7111e67d35f1f5733755f36cf (patch) | |
tree | 914969660c3ccafd9773d1a8c2277123cd0f04b9 /include | |
parent | crypto: repalce tabs with spaces (diff) | |
download | openssl-43c02d9ce267fce7111e67d35f1f5733755f36cf.tar.xz openssl-43c02d9ce267fce7111e67d35f1f5733755f36cf.zip |
punycode: fix indentation
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15824)
Diffstat (limited to 'include')
-rw-r--r-- | include/crypto/punycode.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/crypto/punycode.h b/include/crypto/punycode.h index a8f128daad..133826d87e 100644 --- a/include/crypto/punycode.h +++ b/include/crypto/punycode.h @@ -12,10 +12,10 @@ # pragma once int ossl_punycode_decode ( - const char *pEncoded, - const size_t enc_len, - unsigned int *pDecoded, - unsigned int *pout_length + const char *pEncoded, + const size_t enc_len, + unsigned int *pDecoded, + unsigned int *pout_length ); int ossl_a2ulabel(const char *in, char *out, size_t *outlen); |