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 /ext.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 'ext.c')
-rw-r--r-- | ext.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -330,11 +330,11 @@ get_argument(int i) /* * get_actual_argument --- get the i'th scalar or array argument of a - * dynamically linked function, allowed to be optional. + * dynamically linked function. */ NODE * -get_actual_argument(NODE *t, int i, bool optional, bool want_array) +get_actual_argument(NODE *t, int i, bool want_array) { char *fname; INSTRUCTION *pc; |