vips7 csv load with options was broken

it used the string including the options as the filename
This commit is contained in:
John Cupitt 2012-07-17 10:22:01 +01:00
parent 4171f2673d
commit 0b80d436c8
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ im_csv2vips( const char *filename, IMAGE *out )
lines = atoi( r );
}
if( vips_csvload( filename, &t,
if( vips_csvload( name, &t,
"skip", start_skip,
"lines", lines,
"whitespace", whitespace,