* image.c: Space before paren.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 19 Aug 2013 16:24:06 +0000 (09:24 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 19 Aug 2013 16:24:06 +0000 (09:24 -0700)
src/image.c

index 00f2a03..2b415fb 100644 (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);