diff options
| author | Wayne Davison <wayned@users.sourceforge.net> | 2004-06-02 22:14:25 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@users.sourceforge.net> | 2004-06-02 22:14:25 +0000 |
| commit | fb0937a69eb38e744577aa94a6338135f6c1c9b4 (patch) | |
| tree | 70c7404736602da0e91710dc3a991e3d2dc5377a /Src/Modules/socket.c | |
| parent | Define the new UNUSED() macro for marking function parameters. (diff) | |
| download | zsh-fb0937a69eb38e744577aa94a6338135f6c1c9b4.tar zsh-fb0937a69eb38e744577aa94a6338135f6c1c9b4.tar.gz zsh-fb0937a69eb38e744577aa94a6338135f6c1c9b4.tar.bz2 zsh-fb0937a69eb38e744577aa94a6338135f6c1c9b4.tar.lz zsh-fb0937a69eb38e744577aa94a6338135f6c1c9b4.tar.xz zsh-fb0937a69eb38e744577aa94a6338135f6c1c9b4.tar.zst zsh-fb0937a69eb38e744577aa94a6338135f6c1c9b4.zip | |
Marked unused parameters with the new UNUSED() macro.
Diffstat (limited to 'Src/Modules/socket.c')
| -rw-r--r-- | Src/Modules/socket.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Src/Modules/socket.c b/Src/Modules/socket.c index ace990ab4..5339e72b7 100644 --- a/Src/Modules/socket.c +++ b/Src/Modules/socket.c @@ -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; } |
