]> git.ipfire.org Git - thirdparty/git.git/commit
trailer_info_get(): reorder parameters
authorLinus Arver <linusa@google.com>
Fri, 1 Mar 2024 00:14:43 +0000 (00:14 +0000)
committerJunio C Hamano <gitster@pobox.com>
Fri, 1 Mar 2024 18:35:42 +0000 (10:35 -0800)
commit9aa1b2bc890cea43f2b9aa3379ca88e98a17801f
tree52a9dc1b2469182356be73bc60bbd5efedd60982
parentae0ec2e0e0bb26474f395504c6ed6fef3f59091f
trailer_info_get(): reorder parameters

This is another preparatory refactor to unify the trailer formatters.

Take

    const struct process_trailer_options *opts

as the first parameter, because these options are required for
parsing trailers (e.g., whether to treat "---" as the end of the log
message). And take

    struct trailer_info *info

last, because it's an "out parameter" (something that the caller wants
to use as the output of this function).

Signed-off-by: Linus Arver <linusa@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sequencer.c
trailer.c
trailer.h