From 0c8ecc4577ee72050fbf87bd783514382808d8be Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Sat, 13 Jul 2013 13:13:14 +0100 Subject: [PATCH] oops another const --- libvipsCC/VImage.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvipsCC/VImage.cc b/libvipsCC/VImage.cc index a21fb8dd..32b689ba 100644 --- a/libvipsCC/VImage.cc +++ b/libvipsCC/VImage.cc @@ -368,7 +368,7 @@ double VImage::meta_get_double( const char *field ) const char *VImage::meta_get_string( const char *field ) throw( VError ) { - char *result; + const char *result; if( im_meta_get_string( _ref->im, field, &result ) ) verror();