diff options
| author | Paul Eggert | 2013-08-19 09:24:06 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-08-19 09:24:06 -0700 |
| commit | 824a2fa7375eef76bc628a51f366a3dc3351d21e (patch) | |
| tree | cf10c7e6caa98e934b0c1aa827880f4d16be4ba2 | |
| parent | 2a42bbcee8224aedd09afb48dbbe740e7124ae80 (diff) | |
| download | emacs-824a2fa7375eef76bc628a51f366a3dc3351d21e.tar.gz emacs-824a2fa7375eef76bc628a51f366a3dc3351d21e.zip | |
* image.c: Space before paren.
| -rw-r--r-- | src/image.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/image.c b/src/image.c index 00f2a035c44..2b415fb9b97 100644 --- a/src/image.c +++ b/src/image.c | |||
| @@ -7938,11 +7938,11 @@ imagemagick_get_animation_cache (MagickWand *wand) | |||
| 7938 | return animation_cache; | 7938 | return animation_cache; |
| 7939 | } | 7939 | } |
| 7940 | 7940 | ||
| 7941 | while (strcmp(signature, cache->signature) && | 7941 | while (strcmp (signature, cache->signature) && |
| 7942 | cache->next) | 7942 | cache->next) |
| 7943 | cache = cache->next; | 7943 | cache = cache->next; |
| 7944 | 7944 | ||
| 7945 | if (strcmp(signature, cache->signature)) | 7945 | if (strcmp (signature, cache->signature)) |
| 7946 | { | 7946 | { |
| 7947 | cache->next = imagemagick_create_cache (signature); | 7947 | cache->next = imagemagick_create_cache (signature); |
| 7948 | DestroyString (signature); | 7948 | DestroyString (signature); |