1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

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)
{
Dimension slack = 0;
int last_non_empty_col;
int last_non_empty_col = 0;
int col;
for(col = 0; col < PSUB_GEO_COL_COUNT; col++)