stop a compiler warning
This commit is contained in:
parent
6d5a371147
commit
0f57f3692b
|
@ -413,6 +413,10 @@ vips_foreign_load_csv_load( VipsForeignLoad *load )
|
||||||
for( y = 0; y < load->real->Ysize; y++ ) {
|
for( y = 0; y < load->real->Ysize; y++ ) {
|
||||||
csv->colno = 0;
|
csv->colno = 0;
|
||||||
|
|
||||||
|
/* Not needed, but stops a used-before-set compiler warning.
|
||||||
|
*/
|
||||||
|
ch = EOF;
|
||||||
|
|
||||||
for( x = 0; x < load->real->Xsize; x++ ) {
|
for( x = 0; x < load->real->Xsize; x++ ) {
|
||||||
double value;
|
double value;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue