; * src/image.c (webp_load): Minor stylistic fix-up to previous change
* src/image.c (webp_load): Minor stylistic fix-up to previous change.
This commit is contained in:
parent
dd2a846890
commit
6620d03e33
1 changed files with 2 additions and 2 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Reference in a new issue