commit | a6a505d8493ff6cdaaea2ea3879a273edaca087f | [log] [tgz] |
---|---|---|
author | Dirk Lemstra <dirk@git.imagemagick.org> | Sat Sep 30 13:40:54 2017 +0200 |
committer | Dirk Lemstra <dirk@git.imagemagick.org> | Sat Sep 30 13:40:54 2017 +0200 |
tree | 3db2abab0d45413aa5eab09f2e39a43eaa49a8cf | |
parent | 7dd621dde847123e298ec0a588a840e247077bfc [diff] [blame] |
Fixed clipping path issue in json output reported in #149.
diff --git a/coders/json.c b/coders/json.c index 8715458..df380b7 100644 --- a/coders/json.c +++ b/coders/json.c
@@ -1543,9 +1543,7 @@ /* Display clipping path. */ - (void) FormatLocaleFile(file," \"clipping path\": {\n"); - JsonFormatLocaleFile(file,"%s\n",value); - (void) FormatLocaleFile(file," },\n"); + JsonFormatLocaleFile(file," \"clipping path\": %s,\n",value); } ResetImageProfileIterator(image); name=GetNextImageProfile(image);