diff options
Diffstat (limited to 'src/devices/grohtml')
-rw-r--r-- | src/devices/grohtml/post-html.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/grohtml/post-html.cpp b/src/devices/grohtml/post-html.cpp index 18a1d8eb..1da74c2a 100644 --- a/src/devices/grohtml/post-html.cpp +++ b/src/devices/grohtml/post-html.cpp @@ -2886,8 +2886,8 @@ void html_printer::lookahead_for_tables (void) int found_col = FALSE; int seen_text = FALSE; int ncol = 0; - int colmin; - int colmax; + int colmin = 0; // pacify compiler + int colmax = 0; // pacify compiler html_table *tbl = new html_table(&html, -1); const char *tab_defs = NULL; char align = 'L'; |