diff options
-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; |