1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-18 18:05:07 +00:00

* image.c: Space before paren.

This commit is contained in:
Paul Eggert 2013-08-19 09:24:06 -07:00
parent 2a42bbcee8
commit 824a2fa737

View File

@ -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);