1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-05-19 23:21:25 +02:00

52271: use correct form for unused parameter

This commit is contained in:
Oliver Kiddle 2023-11-08 02:32:23 +01:00
parent 985cc5aae8
commit bad8af1808
2 changed files with 5 additions and 1 deletions
ChangeLog
Src/Modules

View file

@ -1,3 +1,7 @@
2023-11-08 Oliver Kiddle <opk@zsh.org>
* 52271: Src/Modules/pcre.c: use correct form for unused parameter
2023-11-02 Oliver Kiddle <opk@zsh.org>
* 52268: Completion/Linux/Command/_networkmanager: update to 1.42.2

View file

@ -129,7 +129,7 @@ bin_pcre_study(char *nam, UNUSED(char **args), UNUSED(Options ops), UNUSED(int f
}
static int
pcre_callout(pcre2_callout_block_8 *block, void *)
pcre_callout(pcre2_callout_block_8 *block, UNUSED(void *callout_data))
{
Eprog prog;
int ret=0;