diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2021-03-30 13:48:53 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2021-03-30 13:48:53 +0000 |
commit | 540eb60fddd0869ef66b6cf5e107f1a0a1eec21a (patch) | |
tree | efe0850256f073dfdcdf6c23fa018b90746aba2c /table.h | |
parent | Treat textlist item number as int instead of short (diff) | |
download | w3m-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |