This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository legacy-imlib2_loaders.
View the commit online.
commit db9875fe88f9b798364189b7e301dae12650c64b
Author: Kim Woelders <[email protected]>
AuthorDate: Thu Jan 8 19:00:14 2026 +0100
XCF loader: Remove unused variable (gcc16)
---
src/modules/loaders/loader_xcf.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/src/modules/loaders/loader_xcf.c b/src/modules/loaders/loader_xcf.c
index 07efa17..1ae95ff 100644
--- a/src/modules/loaders/loader_xcf.c
+++ b/src/modules/loaders/loader_xcf.c
@@ -952,7 +952,6 @@ xcf_load_tile_rle(Tile * tile, int data_length)
uint8_t *data;
uint8_t val;
int size;
- int count;
int length;
int bpp;
int i, j;
@@ -977,7 +976,6 @@ xcf_load_tile_rle(Tile * tile, int data_length)
{
data = "" + i;
size = tile->ewidth * tile->eheight;
- count = 0;
while (size > 0)
{
@@ -1003,7 +1001,6 @@ xcf_load_tile_rle(Tile * tile, int data_length)
xcfdata += 2;
}
- count += length;
size -= length;
if (size < 0)
@@ -1036,7 +1033,6 @@ xcf_load_tile_rle(Tile * tile, int data_length)
xcfdata += 2;
}
- count += length;
size -= length;
if (size < 0)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.