diff options
author | Daniel Friesel <derf@finalrewind.org> | 2021-01-09 10:51:13 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2021-01-09 10:51:13 +0100 |
commit | a94e98fb4bfdaa3e1d0939b1b093b3097629f61d (patch) | |
tree | 6b395c8837a3592784d11788f99fe583958dd0ad /src/index.c | |
parent | c844bd8aa6216026ad0e6beb1cfe9545eeba4cd7 (diff) |
distinguish between "missing magic bytes" and "no Imlib 2 loader" errors
Diffstat (limited to 'src/index.c')
-rw-r--r-- | src/index.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.c b/src/index.c index 3633c96..85a3ee8 100644 --- a/src/index.c +++ b/src/index.c @@ -332,7 +332,7 @@ void init_index_mode(void) gib_imlib_save_image_with_error_return(im_main, output_buf, &err); if (err) { - feh_imlib_print_load_error(output_buf, im_main, err); + feh_print_load_error(output_buf, im_main, err, LOAD_ERROR_IMLIB); } else if (opt.verbose) { int tw, th; |