diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-11-24 18:40:52 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-11-24 19:08:46 +0100 |
commit | 38acbf15b8acb286315c7eda5acf63f4cf471be1 (patch) | |
tree | 30652bece8be0845cf502af84e81d6c541d3a403 /src/webp.c | |
parent | 6939e4f12e9d5b6c69aa994bbd6fc4046f8941e5 (diff) |
Fix undefined NULL with image support disabled
Diffstat (limited to 'src/webp.c')
-rw-r--r-- | src/webp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -215,6 +215,6 @@ void *a_Webp_new(DilloImage *Image, DilloUrl *url, int version) void *a_Webp_new() { return 0; } void a_Webp_callback() { return; } -const char *a_Webp_version(char *buf, int n) { return NULL; } +const char *a_Webp_version(char *buf, int n) { return 0; } #endif /* ENABLE_WEBP */ |