]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - apps/openssl.c
"foo * bar" should be "foo *bar"
[thirdparty/openssl.git] / apps / openssl.c
index 0122117ce262e69a167e5f628e6b7a9802a9fcaf..dd41ac3a84e443a7a4341509249ab043ddabaedc 100644 (file)
@@ -446,12 +446,12 @@ static int do_cmd(LHASH_OF(FUNCTION) *prog, int argc, char *argv[])
     return 1;
 }
 
-static int function_cmp(const FUNCTION * a, const FUNCTION * b)
+static int function_cmp(const FUNCTION *a, const FUNCTION *b)
 {
     return strncmp(a->name, b->name, 8);
 }
 
-static unsigned long function_hash(const FUNCTION * a)
+static unsigned long function_hash(const FUNCTION *a)
 {
     return OPENSSL_LH_strhash(a->name);
 }