about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorWayne Davison <wayned@users.sourceforge.net>2004-10-01 19:06:49 +0000
committerWayne Davison <wayned@users.sourceforge.net>2004-10-01 19:06:49 +0000
commitb8b11e7627127114dd220698c9da81653344960b (patch)
treebe170af1187e25ba73f84f52292962a61e3b03a1 /Src
parentaa5c13f71c3e57696e001f4f44f55e3723a1907d (diff)
downloadzsh-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.c4
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;