From c6a714794fa0fc30ab4edc6104aa30f0852b7ee4 Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Wed, 18 Jul 2012 17:11:10 +0100 Subject: [PATCH] csv load with options was broken --- libvips/deprecated/im_csv2vips.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvips/deprecated/im_csv2vips.c b/libvips/deprecated/im_csv2vips.c index 834a8792..38ff5765 100644 --- a/libvips/deprecated/im_csv2vips.c +++ b/libvips/deprecated/im_csv2vips.c @@ -74,7 +74,7 @@ im_csv2vips( const char *filename, IMAGE *out ) lines = atoi( r ); } - if( vips__csv_read( filename, out, + if( vips__csv_read( name, out, start_skip, lines, whitespace, separator ) ) return( -1 );