This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository legacy-imlib2.
View the commit online.
commit ecf119af579bffa1fe7bcdf5253ca1d9c89b669b
Author: Kim Woelders <[email protected]>
AuthorDate: Sat Aug 27 17:49:18 2022 +0200
J2K loader: Drop showing deprecated item in debug message
---
src/modules/loaders/loader_j2k.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/modules/loaders/loader_j2k.c b/src/modules/loaders/loader_j2k.c
index 30385ef..a84a65e 100644
--- a/src/modules/loaders/loader_j2k.c
+++ b/src/modules/loaders/loader_j2k.c
@@ -177,10 +177,10 @@ _load(ImlibImage * im, int load_data)
for (i = 0; i < (int)jimage->numcomps; i++)
{
- DL("%d: dx/y=%d/%d wxh=%d,%d prec=%d bpp=%d sgnd=%d fact=%d\n", i,
+ DL("%d: dx/y=%d/%d wxh=%d,%d prec=%d sgnd=%d fact=%d\n", i,
jimage->comps[i].dx, jimage->comps[i].dy,
jimage->comps[i].w, jimage->comps[i].h,
- jimage->comps[i].prec, jimage->comps[i].bpp,
+ jimage->comps[i].prec,
jimage->comps[i].sgnd, jimage->comps[i].factor);
if (jimage->comps[0].dx != jimage->comps[i].dx ||
jimage->comps[0].dy != jimage->comps[i].dy ||
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.