mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-30 17:50:58 +01:00
Marked unused parameters with the new UNUSED() macro.
This commit is contained in:
parent
30a139fe89
commit
fb0937a69e
58 changed files with 641 additions and 593 deletions
|
|
@ -58,7 +58,7 @@
|
|||
#endif
|
||||
|
||||
static int
|
||||
bin_zsocket(char *nam, char **args, Options ops, int func)
|
||||
bin_zsocket(char *nam, char **args, Options ops, UNUSED(int func))
|
||||
{
|
||||
int err=1, verbose=0, test=0, targetfd=0;
|
||||
SOCKLEN_T len;
|
||||
|
|
@ -254,7 +254,7 @@ static struct builtin bintab[] = {
|
|||
|
||||
/**/
|
||||
int
|
||||
setup_(Module m)
|
||||
setup_(UNUSED(Module m))
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -277,7 +277,7 @@ cleanup_(Module m)
|
|||
|
||||
/**/
|
||||
int
|
||||
finish_(Module m)
|
||||
finish_(UNUSED(Module m))
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue