diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-03-29 09:45:03 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-03-29 09:45:03 +0300 |
commit | 50a84421217784f322e39ccfea9443a31e7f482f (patch) | |
tree | cc478d5d1089f40b4a21f595d991428f409d93ef /extension | |
parent | dbf4f96f792b418b3dfb9cb0f43ea76727e7132d (diff) | |
download | egawk-50a84421217784f322e39ccfea9443a31e7f482f.tar.gz egawk-50a84421217784f322e39ccfea9443a31e7f482f.tar.bz2 egawk-50a84421217784f322e39ccfea9443a31e7f482f.zip |
Comment fix in extension/testext.c.
Diffstat (limited to 'extension')
-rw-r--r-- | extension/ChangeLog | 4 | ||||
-rw-r--r-- | extension/testext.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/extension/ChangeLog b/extension/ChangeLog index 1a018897..fef32337 100644 --- a/extension/ChangeLog +++ b/extension/ChangeLog @@ -1,3 +1,7 @@ +2021-03-29 Arnold D. Robbins <arnold@skeeve.com> + + * testext.c (var_test): Fix a comment. Update copyright year. + 2020-07-26 Arnold D. Robbins <arnold@skeeve.com> * intdiv.c (do_intdiv): Change quotient and remainder to diff --git a/extension/testext.c b/extension/testext.c index b911ec93..a5bef7ae 100644 --- a/extension/testext.c +++ b/extension/testext.c @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 2012, 2013, 2014, 2015, 2017, 2018 + * Copyright (C) 2012, 2013, 2014, 2015, 2017, 2018, 2021 * the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the @@ -314,7 +314,7 @@ var_test(int nargs, awk_value_t *result, struct awk_ext_func *unused) goto out; } - /* look up PROCINFO - should succeed fail */ + /* look up PROCINFO - should succeed */ if (sym_lookup("PROCINFO", AWK_ARRAY, & value)) printf("var_test: sym_lookup of PROCINFO passed - got a value!\n"); else |