From 2de4a8b40216be30a9d8bcc283e1eaf822bf39bb Mon Sep 17 00:00:00 2001 From: cristy Date: Wed, 10 Sep 2014 22:48:09 +0000 Subject: [PATCH] --- MagickCore/option.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MagickCore/option.c b/MagickCore/option.c index f2ce42da5..85d584d62 100644 --- a/MagickCore/option.c +++ b/MagickCore/option.c @@ -2192,7 +2192,7 @@ MagickExport ssize_t GetCommandOptionFlags(const CommandOption option, % % The format of the GetCommandOptionInfo method is: % -% const char **GetCommandOptionInfo(const CommandOption option) +% const char **GetCommandOptionInfo(const char *option) % % A description of each parameter follows: % @@ -2341,8 +2341,8 @@ MagickExport MagickBooleanType IsCommandOption(const char *option) if ((*option != '-') && (*option != '+')) return(MagickFalse); if (strlen(option) == 1) - return(IsMagickTrue( (*option == '{') || (*option == '}') - || (*option == '[') || (*option == ']') )); + return(IsMagickTrue((*option == '{') || (*option == '}') || + (*option == '[') || (*option == ']'))); option++; if (*option == '-') return(MagickTrue); -- 2.50.1