summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-04-03 21:05:23 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-04-03 21:05:23 -0700
commit7d66421c9323250118ac31679bc55fdac9bda449 (patch)
treec503280e37d50076431c51b6df1a65942b1c90a9 /lib.c
parent73d668988bb0ee6d4ed0d27064b0616f8d58adfd (diff)
downloadtxr-7d66421c9323250118ac31679bc55fdac9bda449.tar.gz
txr-7d66421c9323250118ac31679bc55fdac9bda449.tar.bz2
txr-7d66421c9323250118ac31679bc55fdac9bda449.zip
func-optparam-count: bugfix.
* lib.c (get_param_counts): If there are no optional parameters, then the oa variable stays negative; we must turn that into a zero, otherwise we return the bogus value -1 as the number of optional arguments.
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index 89f01344..dcf9e870 100644
--- a/lib.c
+++ b/lib.c
@@ -7168,7 +7168,7 @@ static val get_param_counts(val params, cnum *fixparam, cnum *optparam)
}
*fixparam = fx;
- *optparam = oa;
+ *optparam = (oa > 0) ? oa : 0;
return params;
}