summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2019-06-06 12:14:59 +0100
committerMatt Caswell <matt@openssl.org>2019-06-12 10:12:14 +0100
commit8caab503ba004abb555d636c1ca9f7bcde79657f (patch)
tree96d37c8c3ea2303268fa3f7ecf0e78df89f54520 /include
parent4ff4e53f816855b07fc02dc931dd57b2ae324aa1 (diff)
Fix an incorrect macro
A macro was missing a space which was confusing find-doc-nits Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9094)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/ocsp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/ocsp.h b/include/openssl/ocsp.h
index bce367d9d4..5fdff0884b 100644
--- a/include/openssl/ocsp.h
+++ b/include/openssl/ocsp.h
@@ -123,7 +123,7 @@ typedef struct ocsp_service_locator_st OCSP_SERVICELOC;
(char *(*)())d2i_OCSP_REQUEST,PEM_STRING_OCSP_REQUEST, \
bp,(char **)(x),cb,NULL)
-# define PEM_read_bio_OCSP_RESPONSE(bp,x,cb)(OCSP_RESPONSE *)PEM_ASN1_read_bio(\
+# define PEM_read_bio_OCSP_RESPONSE(bp,x,cb) (OCSP_RESPONSE *)PEM_ASN1_read_bio(\
(char *(*)())d2i_OCSP_RESPONSE,PEM_STRING_OCSP_RESPONSE, \
bp,(char **)(x),cb,NULL)