]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
LL_DELETE: fix
authorTimePath <andrew.hardaker1995@gmail.com>
Thu, 3 Mar 2016 00:00:32 +0000 (11:00 +1100)
committerTimePath <andrew.hardaker1995@gmail.com>
Thu, 3 Mar 2016 00:00:50 +0000 (11:00 +1100)
qcsrc/lib/linkedlist.qh

index a8e4aaa090a0ac9ec09a9fad0c1a047ec86337a4..07d99b4f1226f73d843d0304e302d2439d6947e3 100644 (file)
@@ -67,7 +67,7 @@ entity LL_POP(LinkedList this)
 #define LL_DELETE_2(this, dtor) \
        MACRO_BEGIN \
        { \
-               LL_CLEAR(this, dtor); \
+               LL_CLEAR_2(this, dtor); \
                remove(this); \
                this = NULL; \
        } MACRO_END