aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJohannes Bauer <joe@johannes-bauer.com>2017-08-15 18:52:24 +0200
committerBenjamin Kaduk <kaduk@mit.edu>2017-08-15 17:30:25 -0500
commit64bf10167b914bac04a19f9afee381d75fcd670a (patch)
treeee14cfcc1679d0f1b4cc380cdd4a60cc1e7fb80d /include
parentb35ef02628b48d7041cdb8961e931dbe5e10d169 (diff)
downloadopenssl-64bf10167b914bac04a19f9afee381d75fcd670a.zip
openssl-64bf10167b914bac04a19f9afee381d75fcd670a.tar.gz
openssl-64bf10167b914bac04a19f9afee381d75fcd670a.tar.bz2
Fix coding style of EVP_PKEY_CTX_ctrl_uint64
Code review of @dot-asm pointed out style guide violation; this patch fixes it. Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Ben Kaduk <kaduk@mit.edu> (Merged from https://github.com/openssl/openssl/pull/4166)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/evp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/evp.h b/include/openssl/evp.h
index e472ea2..69ffc20 100644
--- a/include/openssl/evp.h
+++ b/include/openssl/evp.h
@@ -1283,7 +1283,7 @@ int EVP_PKEY_CTX_ctrl(EVP_PKEY_CTX *ctx, int keytype, int optype,
int EVP_PKEY_CTX_ctrl_str(EVP_PKEY_CTX *ctx, const char *type,
const char *value);
int EVP_PKEY_CTX_ctrl_uint64(EVP_PKEY_CTX *ctx, int keytype, int optype,
- int cmd, uint64_t value);
+ int cmd, uint64_t value);
int EVP_PKEY_CTX_str2ctrl(EVP_PKEY_CTX *ctx, int cmd, const char *str);
int EVP_PKEY_CTX_hex2ctrl(EVP_PKEY_CTX *ctx, int cmd, const char *hex);