diff options
author | Eitan Adler <lists@eitanadler.com> | 2018-06-06 05:59:58 +0000 |
---|---|---|
committer | Peter Stephenson <p.stephenson@samsung.com> | 2018-06-06 09:35:38 +0100 |
commit | 96ec8cbbf4b115bac0f3468beacae40e017541d8 (patch) | |
tree | ff84e707e3ab78e64f65ddbb5dd6a226ed1f5e59 /Src | |
parent | 6a3b23e9cc42541e9eeed61181965324b6476dd2 (diff) | |
download | zsh-96ec8cbbf4b115bac0f3468beacae40e017541d8.tar.gz zsh-96ec8cbbf4b115bac0f3468beacae40e017541d8.tar.xz zsh-96ec8cbbf4b115bac0f3468beacae40e017541d8.zip |
42938: name argument to math_func is not unused
Diffstat (limited to 'Src')
-rw-r--r-- | Src/Modules/mathfunc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Modules/mathfunc.c b/Src/Modules/mathfunc.c index 01a2913ef..d1c3e089a 100644 --- a/Src/Modules/mathfunc.c +++ b/Src/Modules/mathfunc.c @@ -164,7 +164,7 @@ static struct mathfunc mftab[] = { /**/ static mnumber -math_func(char *name, int argc, mnumber *argv, int id) +math_func(UNUSED(char *name), int argc, mnumber *argv, int id) { mnumber ret; double argd = 0, argd2 = 0, retd = 0; |