summaryrefslogtreecommitdiff
path: root/awk.h
diff options
context:
space:
mode:
authorAndrew J. Schorr <aschorr@telemetry-investments.com>2017-04-10 12:04:25 -0400
committerAndrew J. Schorr <aschorr@telemetry-investments.com>2017-04-10 12:04:25 -0400
commit887477763ab87b33c06df693e93500991d7c324d (patch)
tree6f5c1f14c21c485cc7ed200c5bc27c0e302ff134 /awk.h
parent38bf60d89b766be81789ddd47c2e237c2af4710e (diff)
downloadgawk-887477763ab87b33c06df693e93500991d7c324d.tar.gz
Use Op_illegal instead of 0 in a couple of places for greater clarity.
Diffstat (limited to 'awk.h')
-rw-r--r--awk.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/awk.h b/awk.h
index c7bfec2b..5cad2044 100644
--- a/awk.h
+++ b/awk.h
@@ -597,8 +597,7 @@ typedef enum lintvals {
/* --------------------------------Instruction ---------------------------------- */
typedef enum opcodeval {
- /* illegal entry == 0 */
- Op_illegal,
+ Op_illegal = 0, /* illegal entry */
/* binary operators */
Op_times,