aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBasil L. Contovounesios2026-02-17 15:12:02 +0100
committerBasil L. Contovounesios2026-02-17 15:12:02 +0100
commit0e451ce2eac380e0dcfff6e1c53ebe2a96b20179 (patch)
tree0a2f33d3fdb305284d595e11a364e1719f4dad75 /src
parent24349bd86d9ea3bd449dde1db7f49be89cbb03f9 (diff)
downloademacs-0e451ce2eac380e0dcfff6e1c53ebe2a96b20179.tar.gz
emacs-0e451ce2eac380e0dcfff6e1c53ebe2a96b20179.zip
; Fix image_error argument in webp_load.
Diffstat (limited to 'src')
-rw-r--r--src/image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/image.c b/src/image.c
index ccbf5db028f..c81da7e7b25 100644
--- a/src/image.c
+++ b/src/image.c
@@ -10679,7 +10679,7 @@ webp_load (struct frame *f, struct image *img)
10679 image_error (NILP (specified_data) 10679 image_error (NILP (specified_data)
10680 ? "Error decoding frame #%d from WebP file: `%s'" 10680 ? "Error decoding frame #%d from WebP file: `%s'"
10681 : "Error decoding frame #%d from WebP image data", 10681 : "Error decoding frame #%d from WebP image data",
10682 cache->index + 1, specified_file); 10682 make_int (cache->index + 1), specified_file);
10683 goto cleanup; 10683 goto cleanup;
10684 } 10684 }
10685 eassert (anim_handle->timestamp >= 0); 10685 eassert (anim_handle->timestamp >= 0);