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/mem.c | |
parent | 30a139fe894f76ad256281b60a36c693bc561245 (diff) | |
download | zsh-fb0937a69eb38e744577aa94a6338135f6c1c9b4.tar.gz zsh-fb0937a69eb38e744577aa94a6338135f6c1c9b4.tar.xz zsh-fb0937a69eb38e744577aa94a6338135f6c1c9b4.zip |
Marked unused parameters with the new UNUSED() macro.
Diffstat (limited to 'Src/mem.c')
-rw-r--r-- | Src/mem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/mem.c b/Src/mem.c index b944c4d08..16537eba5 100644 --- a/Src/mem.c +++ b/Src/mem.c @@ -1462,7 +1462,7 @@ bin_mem(char *name, char **argv, Options ops, int func) /**/ mod_export void -zfree(void *p, int sz) +zfree(void *p, UNUSED(int sz)) { if (p) free(p); |