diff options
Diffstat (limited to 'main/tvheadend/sys-queue.patch')
-rw-r--r-- | main/tvheadend/sys-queue.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/main/tvheadend/sys-queue.patch b/main/tvheadend/sys-queue.patch deleted file mode 100644 index 0cec28c7bc..0000000000 --- a/main/tvheadend/sys-queue.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- ./src/queue.h.orig -+++ ./src/queue.h -@@ -86,12 +86,14 @@ - * Some extra functions for LIST manipulation - */ - -+#ifndef LIST_MOVE - #define LIST_MOVE(newhead, oldhead, field) do { \ - if((oldhead)->lh_first) { \ - (oldhead)->lh_first->field.le_prev = &(newhead)->lh_first; \ - } \ - (newhead)->lh_first = (oldhead)->lh_first; \ - } while (0) -+#endif - - #define LIST_INSERT_SORTED(head, elm, field, cmpfunc) do { \ - if(LIST_EMPTY(head)) { \ |