diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-04-03 21:05:23 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-04-03 21:05:23 -0700 |
commit | 7d66421c9323250118ac31679bc55fdac9bda449 (patch) | |
tree | c503280e37d50076431c51b6df1a65942b1c90a9 /lib.c | |
parent | 73d668988bb0ee6d4ed0d27064b0616f8d58adfd (diff) | |
download | txr-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |