push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
diff --git a/packages/iconv/iconv.c b/packages/iconv/iconv.c
index ba2c38a7..55c2e737 100644
--- a/packages/iconv/iconv.c
+++ b/packages/iconv/iconv.c
@@ -66,7 +66,7 @@ iconvWrapper (iconv_t handle, OOP readBufferOOP, int readPos,
int readCount, OOP writeBufferOOP, int writeCount,
OOP bytesLeftOOP)
{
- const char *inbuf;
+ char *inbuf;
size_t inbytesleft;
char *outbuf;
size_t outbytesleft;
diff --git a/packages/xml/expat/expat.c b/packages/xml/expat/expat.c
index 0ceee46c..4ea35289 100644
--- a/packages/xml/expat/expat.c
+++ b/packages/xml/expat/expat.c
@@ -573,7 +573,7 @@ gst_XML_ParserCreate (OOP parserOOP)
XML_SetNotationDeclHandler (p, gst_NotationDeclHandler);
XML_SetStartNamespaceDeclHandler (p, gst_StartNamespaceDeclHandler);
XML_SetEndNamespaceDeclHandler (p, gst_EndNamespaceDeclHandler);
- XML_SetSkippedEntityHandler (p, gst_SkippedEntityHandler);
+ XML_SetSkippedEntityHandler (p, (void (*)(void *, const XML_Char *, int))(gst_SkippedEntityHandler));
XML_SetReturnNSTriplet (p, true);
if (!saxEventSequenceClass)