diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-10-10 21:53:13 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-10-10 21:53:13 +0200 |
commit | 0cf50ae4c064bd2d8960ffd1e14f97402b8f5157 (patch) | |
tree | 8c78e943bad2fd68bc7abf2d1d10bf193e37e941 /eval.c | |
parent | 35d9ad9209592594905d1c8f15130d09af111411 (diff) | |
download | egawk-0cf50ae4c064bd2d8960ffd1e14f97402b8f5157.tar.gz egawk-0cf50ae4c064bd2d8960ffd1e14f97402b8f5157.tar.bz2 egawk-0cf50ae4c064bd2d8960ffd1e14f97402b8f5157.zip |
Remove some compile time warnings.
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1418,7 +1418,7 @@ unwind_stack(long n) if (stack_ptr < sp) return NULL; - while (r = POP()) { + while ((r = POP()) != NULL) { switch (r->type) { case Node_frame: cp = restore_frame(r); |