diff options
author | Wayne Davison <wayned@users.sourceforge.net> | 2004-10-01 19:06:49 +0000 |
---|---|---|
committer | Wayne Davison <wayned@users.sourceforge.net> | 2004-10-01 19:06:49 +0000 |
commit | b8b11e7627127114dd220698c9da81653344960b (patch) | |
tree | be170af1187e25ba73f84f52292962a61e3b03a1 /Src | |
parent | aa5c13f71c3e57696e001f4f44f55e3723a1907d (diff) | |
download | zsh-b8b11e7627127114dd220698c9da81653344960b.tar.gz zsh-b8b11e7627127114dd220698c9da81653344960b.tar.xz zsh-b8b11e7627127114dd220698c9da81653344960b.zip |
Silence unused-parameter warnings from the compiler.
Diffstat (limited to 'Src')
-rw-r--r-- | Src/params.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/params.c b/Src/params.c index 98888e7b0..183b4927c 100644 --- a/Src/params.c +++ b/Src/params.c @@ -2743,7 +2743,7 @@ randomsetfn(UNUSED(Param pm), zlong v) /**/ zlong -intsecondsgetfn(Param pm) +intsecondsgetfn(UNUSED(Param pm)) { struct timeval now; struct timezone dummy_tz; @@ -2758,7 +2758,7 @@ intsecondsgetfn(Param pm) /**/ void -intsecondssetfn(Param pm, zlong x) +intsecondssetfn(UNUSED(Param pm), zlong x) { struct timeval now; struct timezone dummy_tz; |