]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/image.c (webp_load): Minor stylistic fix-up to previous change
authorLars Ingebrigtsen <larsi@gnus.org>
Sun, 5 Dec 2021 22:31:36 +0000 (23:31 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 5 Dec 2021 22:31:36 +0000 (23:31 +0100)
* src/image.c (webp_load): Minor stylistic fix-up to previous change.

src/image.c

index 709abc21aa0e0bcdb2ab0ab36217bfd5c8efb49c..278446e37fc8d1c02bee287ffd47123264e132fe 100644 (file)
@@ -9007,7 +9007,7 @@ webp_load (struct frame *f, struct image *img)
   /* Validate the WebP image header.  */
   if (!WebPGetInfo (contents, size, NULL, NULL))
     {
-      if (! NILP (file))
+      if (!NILP (file))
        image_error ("Not a WebP file: `%s'", file);
       else
        image_error ("Invalid header in WebP image data");
@@ -9030,7 +9030,7 @@ webp_load (struct frame *f, struct image *img)
     case VP8_STATUS_USER_ABORT:
     default:
       /* Error out in all other cases.  */
-      if (! NILP (file))
+      if (!NILP (file))
        image_error ("Error when interpreting WebP image data: `%s'", file);
       else
        image_error ("Error when interpreting WebP image data");