kwo pushed a commit to branch master. http://git.enlightenment.org/legacy/imlib2.git/commit/?id=b9496a326d53f2bc409d1616fe9ebcfcddcdc0ee
commit b9496a326d53f2bc409d1616fe9ebcfcddcdc0ee Author: Kim Woelders <[email protected]> Date: Fri Apr 8 13:49:33 2022 +0200 loaders: Fix typo, fix order --- src/lib/loaders.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/loaders.c b/src/lib/loaders.c index 2437a1a..d1142e7 100644 --- a/src/lib/loaders.c +++ b/src/lib/loaders.c @@ -37,17 +37,17 @@ static const char *const ext_ico[] = { "ico", NULL }; static const char *const ext_jpeg[] = { "jpg", "jpeg", "jfif", "jfi", NULL }; #endif #ifdef BUILD_JXL_LOADER -static const char *const ext_jxl[] = { "uxl", NULL }; +static const char *const ext_jxl[] = { "jxl", NULL }; #endif static const char *const ext_lbm[] = { "iff", "ilbm", "lbm", NULL }; #ifdef BUILD_PNG_LOADER static const char *const ext_png[] = { "png", NULL }; #endif +static const char *const ext_pnm[] = + { "pnm", "ppm", "pgm", "pbm", "pam", NULL }; #ifdef BUILD_SVG_LOADER static const char *const ext_svg[] = { "svg", NULL }; #endif -static const char *const ext_pnm[] = - { "pnm", "ppm", "pgm", "pbm", "pam", NULL }; static const char *const ext_tga[] = { "tga", NULL }; #ifdef BUILD_TIFF_LOADER static const char *const ext_tiff[] = { "tiff", "tif", NULL }; --
