From 56090c6fa763354bab628c11e1f83b3d432b218a Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Sun, 8 Dec 2019 14:16:52 +0000 Subject: [PATCH] fix another compiler warning --- libvips/iofuncs/streami.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvips/iofuncs/streami.c b/libvips/iofuncs/streami.c index 189a7433..592311ce 100644 --- a/libvips/iofuncs/streami.c +++ b/libvips/iofuncs/streami.c @@ -574,7 +574,7 @@ vips_streami_unminimise( VipsStreami *streami ) if( (fd = vips_tracked_open( stream->filename, MODE_READ )) == -1 ) { vips_error_system( errno, vips_stream_nick( stream ), - _( "unable to open for read" ) ); + "%s", _( "unable to open for read" ) ); return( -1 ); }