stop a compiler warning

This commit is contained in:
John Cupitt 2020-06-03 13:11:18 +01:00
parent 6d5a371147
commit 0f57f3692b
1 changed files with 4 additions and 0 deletions

View File

@ -413,6 +413,10 @@ vips_foreign_load_csv_load( VipsForeignLoad *load )
for( y = 0; y < load->real->Ysize; y++ ) {
csv->colno = 0;
/* Not needed, but stops a used-before-set compiler warning.
*/
ch = EOF;
for( x = 0; x < load->real->Xsize; x++ ) {
double value;