aboutsummaryrefslogtreecommitdiffstats
path: root/main/mariadb/musl-fix-inttype.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/mariadb/musl-fix-inttype.patch')
-rw-r--r--main/mariadb/musl-fix-inttype.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/main/mariadb/musl-fix-inttype.patch b/main/mariadb/musl-fix-inttype.patch
deleted file mode 100644
index dd59df586e..0000000000
--- a/main/mariadb/musl-fix-inttype.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/storage/mroonga/vendor/groonga/lib/com.c b/storage/mroonga/vendor/groonga/lib/com.c
-index eb1cacf..d26741e 100644
---- a/storage/mroonga/vendor/groonga/lib/com.c
-+++ b/storage/mroonga/vendor/groonga/lib/com.c
-@@ -351,7 +351,7 @@ grn_com_event_add(grn_ctx *ctx, grn_com_event *ev, grn_sock fd, int events, grn_
- struct epoll_event e;
- memset(&e, 0, sizeof(struct epoll_event));
- e.data.fd = (fd);
-- e.events = (__uint32_t) events;
-+ e.events = (uint32_t) events;
- if (epoll_ctl(ev->epfd, EPOLL_CTL_ADD, (fd), &e) == -1) {
- SERR("epoll_ctl");
- return ctx->rc;
-@@ -399,7 +399,7 @@ grn_com_event_mod(grn_ctx *ctx, grn_com_event *ev, grn_sock fd, int events, grn_
- struct epoll_event e;
- memset(&e, 0, sizeof(struct epoll_event));
- e.data.fd = (fd);
-- e.events = (__uint32_t) events;
-+ e.events = (uint32_t) events;
- if (epoll_ctl(ev->epfd, EPOLL_CTL_MOD, (fd), &e) == -1) {
- SERR("epoll_ctl");
- return ctx->rc;