Treat table height as int instead of short

Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=838952
This commit is contained in:
Tatsuya Kinoshita
2021-03-30 22:48:53 +09:00
parent 1a9bcdf202
commit 540eb60fdd
2 changed files with 41 additions and 8 deletions

View File

@@ -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;