aboutsummaryrefslogtreecommitdiff
path: root/test/ectest.c
diff options
context:
space:
mode:
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>2023-07-16 20:03:40 +0200
committerTomas Mraz <tomas@openssl.org>2023-09-11 10:15:30 +0200
commitbbaeadb068c3289c7df3b7bea0049f70a648ba00 (patch)
tree6b422be112aee4de8ddadf7cf90fc5d7cedf8ca3 /test/ectest.c
parentad31628cfef5893b2198077752302a7d9b58135c (diff)
downloadopenssl-bbaeadb068c3289c7df3b7bea0049f70a648ba00.zip
openssl-bbaeadb068c3289c7df3b7bea0049f70a648ba00.tar.gz
openssl-bbaeadb068c3289c7df3b7bea0049f70a648ba00.tar.bz2
"foo * bar" should be "foo *bar"
Found by running the checkpatch.pl Linux script to enforce coding style. Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21468)
Diffstat (limited to 'test/ectest.c')
-rw-r--r--test/ectest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ectest.c b/test/ectest.c
index 87d8174..70df89e 100644
--- a/test/ectest.c
+++ b/test/ectest.c
@@ -2457,7 +2457,7 @@ static int ec_point_hex2point_test(int id)
EC_GROUP *group = NULL;
const EC_POINT *G = NULL;
EC_POINT *P = NULL;
- BN_CTX * bnctx = NULL;
+ BN_CTX *bnctx = NULL;
/* Do some setup */
nid = curves[id].nid;