diff options
author | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2016-05-26 21:57:11 -0400 |
---|---|---|
committer | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2016-05-26 21:57:11 -0400 |
commit | 9a1809359241c38d2814e287d302a346e85c6ec4 (patch) | |
tree | 6b5cff306861eb7ce6ef23ec53429b45843f854e /gawkapi.c | |
parent | 14d958c82b939d26ad37ab0c0debfedf780404d0 (diff) | |
download | egawk-9a1809359241c38d2814e287d302a346e85c6ec4.tar.gz egawk-9a1809359241c38d2814e287d302a346e85c6ec4.tar.bz2 egawk-9a1809359241c38d2814e287d302a346e85c6ec4.zip |
Remove useless "optional" argument to get_actual_argument.
Diffstat (limited to 'gawkapi.c')
-rw-r--r-- | gawkapi.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -82,7 +82,7 @@ api_get_argument(awk_ext_id_t id, size_t count, array: /* get the array here */ - arg = get_array_argument(arg, count, false); + arg = get_array_argument(arg, count); if (arg == NULL) return awk_false; @@ -90,7 +90,7 @@ array: scalar: /* at this point we have a real type that is not an array */ - arg = get_scalar_argument(arg, count, false); + arg = get_scalar_argument(arg, count); if (arg == NULL) return awk_false; @@ -120,7 +120,7 @@ api_set_argument(awk_ext_id_t id, || arg->type != Node_var_new) return awk_false; - arg = get_array_argument(arg, count, false); + arg = get_array_argument(arg, count); if (arg == NULL) return awk_false; |