summaryrefslogtreecommitdiffstats
path: root/crypto/cryptlib.c
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2019-07-16 20:24:10 +1000
committerPauli <paul.dale@oracle.com>2019-07-16 20:24:10 +1000
commitdd6b270618b8f43009999e45ad6dd03ca50bbe54 (patch)
tree65fd2e97c594dfd973c001c2238063a3d50e0898 /crypto/cryptlib.c
parente3a0d367299ee9f384ef912c644dbb5ef195798d (diff)
Remove tab characters from C source files.
Some have been creeping into the source code. Reviewed-by: Paul Yang <yang.yang@baishancloud.com> (Merged from https://github.com/openssl/openssl/pull/9397)
Diffstat (limited to 'crypto/cryptlib.c')
-rw-r--r--crypto/cryptlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c
index 6e5e65eaca..0048a3d210 100644
--- a/crypto/cryptlib.c
+++ b/crypto/cryptlib.c
@@ -84,7 +84,7 @@ static variant_char *ossl_strchr(const variant_char *str, char srch)
while((c = *str)) {
if (c == srch)
- return (variant_char *)str;
+ return (variant_char *)str;
str++;
}