diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-07-04 05:41:05 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-07-04 05:41:05 +0300 |
commit | 414cd1eccff2d6d6415e1f65ac2e51e7c1b33890 (patch) | |
tree | ec23aa620134a1c949840c1c9e3294ba89a83a43 /str_array.c | |
parent | 093f27aa0d53494c257cf16a57b01ad43f70cdff (diff) | |
parent | ff4e0706c5ee5dffd69168ebd0ff5f53e474d048 (diff) | |
download | egawk-414cd1eccff2d6d6415e1f65ac2e51e7c1b33890.tar.gz egawk-414cd1eccff2d6d6415e1f65ac2e51e7c1b33890.tar.bz2 egawk-414cd1eccff2d6d6415e1f65ac2e51e7c1b33890.zip |
Merge branch 'master' into feature/cmake
Diffstat (limited to 'str_array.c')
-rw-r--r-- | str_array.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/str_array.c b/str_array.c index d9b5d2a4..f66b22cc 100644 --- a/str_array.c +++ b/str_array.c @@ -168,7 +168,7 @@ str_lookup(NODE *symbol, NODE *subs) * flag on it since other variables could be using the same * reference-counted value. */ - if (subs->stfmt != -1 || (subs->flags & MAYBE_NUM) != 0) { + if (subs->stfmt != STFMT_UNUSED || (subs->flags & MAYBE_NUM) != 0) { NODE *tmp; /* |