summaryrefslogtreecommitdiffstats
path: root/engines
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 /engines
parentad31628cfef5893b2198077752302a7d9b58135c (diff)
"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 'engines')
-rw-r--r--engines/e_dasync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/e_dasync.c b/engines/e_dasync.c
index 92be34d427..63b13d3d45 100644
--- a/engines/e_dasync.c
+++ b/engines/e_dasync.c
@@ -519,7 +519,7 @@ static void dummy_pause_job(void) {
ASYNC_JOB *job;
ASYNC_WAIT_CTX *waitctx;
ASYNC_callback_fn callback;
- void * callback_arg;
+ void *callback_arg;
OSSL_ASYNC_FD pipefds[2] = {0, 0};
OSSL_ASYNC_FD *writefd;
#if defined(ASYNC_WIN)