# HG changeset patch # User abarth93 # Date 1424445899 0 # Node ID 9f933cf29066d92ac3c68023fd753da6dfab7920 # Parent 4165b935486144bf470eebfb952fc7b3fa1e8314 fix for attributes value with %-sign diff -r 4165b9354861 -r 9f933cf29066 main/netcdf/inst/ncdisp.m --- a/main/netcdf/inst/ncdisp.m Fri Feb 13 12:13:52 2015 +0000 +++ b/main/netcdf/inst/ncdisp.m Fri Feb 20 15:24:59 2015 +0000 @@ -149,7 +149,7 @@ c = getfield(colors,color); - fprintf([c, msg, reset]); + fprintf('%s',[c, msg, reset]); else - fprintf(msg); + fprintf('%s',msg); end