summaryrefslogtreecommitdiff
path: root/src/tables.c
diff options
context:
space:
mode:
authorrlar <rlar>2016-03-01 18:22:25 +0100
committerWill Estes <westes575@gmail.com>2016-03-12 14:12:49 -0500
commitbdc999cbc1b2e5e45af661849175dce5fe1c4036 (patch)
treee1f68b644ead2d95fca2adcec3ee51450a5df0d3 /src/tables.c
parentfb60d5a04e89329613942e9fca6ef2fa6b67f694 (diff)
improve readability
Diffstat (limited to 'src/tables.c')
-rw-r--r--src/tables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tables.c b/src/tables.c
index 30828a6..980d2e9 100644
--- a/src/tables.c
+++ b/src/tables.c
@@ -437,7 +437,7 @@ static size_t min_int_size (struct yytbl_data *tbl)
n = abs (yytbl_data_geti (tbl, i));
- if (n > max)
+ if (max < n)
max = n;
}