From ce0b08622c58c52329588520dfed92dc152348f2 Mon Sep 17 00:00:00 2001 From: jca Date: Tue, 10 Jan 2023 18:02:47 +0000 Subject: [PATCH] Drop this patch, not needed after -Werror removal --- net/czmq/patches/patch-src_zloop_c | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 net/czmq/patches/patch-src_zloop_c diff --git a/net/czmq/patches/patch-src_zloop_c b/net/czmq/patches/patch-src_zloop_c deleted file mode 100644 index 091b831c69d..00000000000 --- a/net/czmq/patches/patch-src_zloop_c +++ /dev/null @@ -1,12 +0,0 @@ -Index: src/zloop.c ---- src/zloop.c.orig -+++ src/zloop.c -@@ -582,7 +582,7 @@ zloop_timer_end (zloop_t *self, int timer_id) - // from inside the poll loop. So, we hold the arg on the zombie - // list, and process that list when we're done executing timers. - // This hack lets us store an integer timer ID as a pointer -- zlistx_add_end (self->zombies, (byte *) NULL + timer_id); -+ zlistx_add_end (self->zombies, (void *)(uintptr_t)timer_id); - - if (self->verbose) - zsys_debug ("zloop: cancel timer id=%d", timer_id);