diff options
author | FdaSilvaYY <fdasilvayy@gmail.com> | 2017-08-11 16:15:22 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2017-08-11 16:16:33 +0200 |
commit | 44e699515568abcae0e77d7315f9b5e393daa6d9 (patch) | |
tree | 6ae18242aeeab06ea032a3642fcf475835e81c5c /include | |
parent | Move FuzzerSetRand to separate file. (diff) | |
download | openssl-44e699515568abcae0e77d7315f9b5e393daa6d9.tar.xz openssl-44e699515568abcae0e77d7315f9b5e393daa6d9.zip |
Fix some Typos and indents
Reviewed-by: Andy Polyakov <appro@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4108)
Diffstat (limited to 'include')
-rw-r--r-- | include/internal/o_dir.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/internal/o_dir.h b/include/internal/o_dir.h index b85275110c..f18fc6708e 100644 --- a/include/internal/o_dir.h +++ b/include/internal/o_dir.h @@ -45,12 +45,12 @@ extern "C" { typedef struct OPENSSL_dir_context_st OPENSSL_DIR_CTX; - /* - * returns NULL on error or end-of-directory. If it is end-of-directory, - * errno will be zero - */ +/* + * returns NULL on error or end-of-directory. If it is end-of-directory, + * errno will be zero + */ const char *OPENSSL_DIR_read(OPENSSL_DIR_CTX **ctx, const char *directory); - /* returns 1 on success, 0 on error */ +/* returns 1 on success, 0 on error */ int OPENSSL_DIR_end(OPENSSL_DIR_CTX **ctx); #ifdef __cplusplus |