aboutsummaryrefslogtreecommitdiffstats
path: root/table.h
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2021-03-30 13:48:53 +0000
committerTatsuya Kinoshita <tats@debian.org>2021-03-30 13:48:53 +0000
commit540eb60fddd0869ef66b6cf5e107f1a0a1eec21a (patch)
treeefe0850256f073dfdcdf6c23fa018b90746aba2c /table.h
parentTreat textlist item number as int instead of short (diff)
downloadw3m-540eb60fddd0869ef66b6cf5e107f1a0a1eec21a.tar.gz
w3m-540eb60fddd0869ef66b6cf5e107f1a0a1eec21a.zip
Treat table height as int instead of short
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=838952
Diffstat (limited to 'table.h')
-rw-r--r--table.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/table.h b/table.h
index fdcdef3..df03143 100644
--- a/table.h
+++ b/table.h
@@ -100,7 +100,7 @@ struct table {
short minimum_width[MAXCOL];
short fixed_width[MAXCOL];
struct table_cell cell;
- short *tabheight;
+ int *tabheight;
struct table_in *tables;
short ntable;
short tables_size;