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 52511a15cc082650b5da3d1c304d8393e884ec28
Author: Kim Woelders <[email protected]>
AuthorDate: Thu Jun 30 08:17:44 2022 +0200
modules: Fix signdness warning
---
src/lib/modules.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lib/modules.c b/src/lib/modules.c
index 2833c86..94b57d1 100644
--- a/src/lib/modules.c
+++ b/src/lib/modules.c
@@ -170,7 +170,7 @@ __imlib_ModuleFind(char **ppath, const char *name)
{
n = snprintf(nbuf, sizeof(nbuf), "%s/%s.so", *pp, name);
- if (n < 0 || n >= sizeof(nbuf) || !__imlib_FileIsFile(nbuf))
+ if (n < 0 || n >= (int)sizeof(nbuf) || !__imlib_FileIsFile(nbuf))
continue;
return strdup(nbuf);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.