summaryrefslogtreecommitdiffstats
path: root/test/drbgtest.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/drbgtest.c
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 'test/drbgtest.c')
-rw-r--r--test/drbgtest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/drbgtest.c b/test/drbgtest.c
index 29583b568f..bb2a9f1b99 100644
--- a/test/drbgtest.c
+++ b/test/drbgtest.c
@@ -299,7 +299,7 @@ typedef struct drbg_fork_result_st {
* This simplifies finding duplicate random output and makes
* the printout in case of an error more readable.
*/
-static int compare_drbg_fork_result(const void * left, const void * right)
+static int compare_drbg_fork_result(const void *left, const void *right)
{
int result;
const drbg_fork_result *l = left;
@@ -322,7 +322,7 @@ static int compare_drbg_fork_result(const void * left, const void * right)
*
* Used for finding collisions in two-byte chunks
*/
-static int compare_rand_chunk(const void * left, const void * right)
+static int compare_rand_chunk(const void *left, const void *right)
{
return memcmp(left, right, 2);
}