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 4ea0b4c34b7d469b0f9d5bd69e25f81a2d00831c
Author: Kim Woelders <[email protected]>
AuthorDate: Sun Dec 7 10:11:21 2025 +0100
imlib2_conv: Fix constness warning
Appeared after glibc update.
---
src/bin/imlib2_conv.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/imlib2_conv.c b/src/bin/imlib2_conv.c
index 9e52809..7f60352 100644
--- a/src/bin/imlib2_conv.c
+++ b/src/bin/imlib2_conv.c
@@ -90,7 +90,7 @@ main(int argc, char **argv)
const char *fin, *fout;
int wo, ho;
unsigned int bgcol;
- char *dot;
+ const char *dot;
Imlib_Image im;
int cnt, save_cnt;
bool show_time;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.