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
2016-10-08 10:27:41 +09:00
parent d01de738f5
commit 0c9aebb26a
3 changed files with 11 additions and 11 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;