aboutsummaryrefslogtreecommitdiffstats
path: root/awk.h
diff options
context:
space:
mode:
authorAndrew J. Schorr <aschorr@telemetry-investments.com>2017-01-26 11:30:20 -0500
committerAndrew J. Schorr <aschorr@telemetry-investments.com>2017-01-26 11:30:20 -0500
commita405df4fd26c1a1428fb3eb9d749c42295256634 (patch)
tree7de85c69167d53a3c35715744f27bca390d5ca55 /awk.h
parent6b12d4f726b9578d5c878fa765d5c167c9d71618 (diff)
downloadegawk-a405df4fd26c1a1428fb3eb9d749c42295256634.tar.gz
egawk-a405df4fd26c1a1428fb3eb9d749c42295256634.tar.bz2
egawk-a405df4fd26c1a1428fb3eb9d749c42295256634.zip
Minor tweak to block allocator to remove pointless BLOCK_INVALID header.
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 66163519..199aba38 100644
--- a/awk.h
+++ b/awk.h
@@ -1060,8 +1060,7 @@ struct block_header {
};
enum block_id {
- BLOCK_INVALID = 0, /* not legal */
- BLOCK_NODE,
+ BLOCK_NODE = 0,
BLOCK_BUCKET,
BLOCK_MAX /* count */
};