Skip to content

Commit

Permalink
eliminate unitialized warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristy committed Jul 22, 2022
1 parent 95a6cc3 commit 8eba5c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion magick/morphology.c
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ static KernelInfo *ParseKernelArray(const char *kernel_string)
static KernelInfo *ParseKernelName(const char *kernel_string)
{
char
token[MaxTextExtent];
token[MaxTextExtent] = "";

const char
*p,
Expand Down

0 comments on commit 8eba5c8

Please sign in to comment.