mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-06-11 19:18:01 +02:00
52271: use correct form for unused parameter
This commit is contained in:
parent
985cc5aae8
commit
bad8af1808
2 changed files with 5 additions and 1 deletions
|
@ -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>
|
2023-11-02 Oliver Kiddle <opk@zsh.org>
|
||||||
|
|
||||||
* 52268: Completion/Linux/Command/_networkmanager: update to 1.42.2
|
* 52268: Completion/Linux/Command/_networkmanager: update to 1.42.2
|
||||||
|
|
|
@ -129,7 +129,7 @@ bin_pcre_study(char *nam, UNUSED(char **args), UNUSED(Options ops), UNUSED(int f
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
pcre_callout(pcre2_callout_block_8 *block, void *)
|
pcre_callout(pcre2_callout_block_8 *block, UNUSED(void *callout_data))
|
||||||
{
|
{
|
||||||
Eprog prog;
|
Eprog prog;
|
||||||
int ret=0;
|
int ret=0;
|
||||||
|
|
Loading…
Reference in a new issue