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 3bcd40dd16e9983a5451327ec65c83ff49148088
Author: NRK <[email protected]>
AuthorDate: Fri Jun 16 10:17:13 2023 +0600
QOI loader: fix build on non-gnu compilers
---
src/modules/loaders/loader_qoi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/modules/loaders/loader_qoi.c b/src/modules/loaders/loader_qoi.c
index f371669..fb19aca 100644
--- a/src/modules/loaders/loader_qoi.c
+++ b/src/modules/loaders/loader_qoi.c
@@ -16,7 +16,7 @@
#define DBG_PFX "LDR-qoi"
#if IMLIB2_DEBUG
#define QOIDEC_ASSERT(X) do { if (!(X)) D("%d: %s\n", __LINE__, #X); } while (0)
-#elif defined(__GNUC__)
+#else
#define QOIDEC_ASSERT(X)
#endif
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.