]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
paramnams: add new line to break long function declaration
authorPauli <ppzgs1@gmail.com>
Thu, 19 Jun 2025 01:39:43 +0000 (11:39 +1000)
committerPauli <ppzgs1@gmail.com>
Wed, 25 Jun 2025 07:22:07 +0000 (17:22 +1000)
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/27859)

util/perl/OpenSSL/paramnames.pm

index e411329b4f13c81df277b37cac72e0c29067a3c7..a698b7d157d7a449f5c4c04f1146779b309b2de2 100644 (file)
@@ -792,7 +792,7 @@ sub output_param_decoder {
     locate_long_endings(\%t);
 
     printf "#ifndef %s_decoder\n", $decoder_name_base;
-    printf "static struct %s_st %s_decoder(const OSSL_PARAM params[]) {\n",
+    printf "static struct %s_st\n%s_decoder(const OSSL_PARAM params[]) {\n",
         $decoder_name_base, $decoder_name_base;
     printf "    struct %s_st r;\n", $decoder_name_base;
     print "    const OSSL_PARAM *p;\n";