libdtprint: Resolve uninitialized warnings

This commit is contained in:
Peter Howkins
2021-12-21 01:09:55 +00:00
committed by Jon Trulson
parent 37e03a1820
commit 108c2fab2c

View File

@@ -948,7 +948,7 @@ ColumnGeoSetPreferredWidths(
int row) int row)
{ {
Dimension slack = 0; Dimension slack = 0;
int last_non_empty_col; int last_non_empty_col = 0;
int col; int col;
for(col = 0; col < PSUB_GEO_COL_COUNT; col++) for(col = 0; col < PSUB_GEO_COL_COUNT; col++)