]> git.ipfire.org Git - thirdparty/git.git/commit
fast-export: drop unused parameter from anonymize_commit_message()
authorJeff King <peff@peff.net>
Wed, 22 Mar 2023 17:43:22 +0000 (13:43 -0400)
committerJunio C Hamano <gitster@pobox.com>
Wed, 22 Mar 2023 22:37:09 +0000 (15:37 -0700)
commitd051f1718e5e5692d096778f2c7f497fc0dae8b6
treebf00e97c15a424f1562a939413821bc2edd85885
parent65c756fff080e4798bbd1e3fa37263ed16c2d136
fast-export: drop unused parameter from anonymize_commit_message()

As the comment above the function indicates, we do not bother actually
storing commit messages in our anonymization map. But we still take the
message as a parameter, and just ignore it. Let's stop doing that, which
will make -Wunused-parameter happier.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/fast-export.c