Skip to content

Commit bec342b

Browse files
Place CreateThread() parameters on same line to condence function vertical space.
1 parent 1e67e5a commit bec342b

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

test/test_dh.c

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -368,14 +368,7 @@ int test_dh_key_gen_multithreaded(ENGINE* e, EVP_PKEY* params)
368368
vars.e = e;
369369
vars.params = params;
370370

371-
hThread = CreateThread(
372-
NULL,
373-
0,
374-
DhKeyGenThreadFunc,
375-
&vars,
376-
0,
377-
&dwThreadId);
378-
371+
hThread = CreateThread(NULL, 0, DhKeyGenThreadFunc, &vars, 0, &dwThreadId);
379372
if (hThread == NULL) {
380373
err = 1;
381374
}

0 commit comments

Comments
 (0)