* image.c: Space before paren.
This commit is contained in:
parent
2a42bbcee8
commit
824a2fa737
1 changed files with 2 additions and 2 deletions
|
@ -7938,11 +7938,11 @@ imagemagick_get_animation_cache (MagickWand *wand)
|
|||
return animation_cache;
|
||||
}
|
||||
|
||||
while (strcmp(signature, cache->signature) &&
|
||||
while (strcmp (signature, cache->signature) &&
|
||||
cache->next)
|
||||
cache = cache->next;
|
||||
|
||||
if (strcmp(signature, cache->signature))
|
||||
if (strcmp (signature, cache->signature))
|
||||
{
|
||||
cache->next = imagemagick_create_cache (signature);
|
||||
DestroyString (signature);
|
||||
|
|
Loading…
Add table
Reference in a new issue