diff th_network.c @ 689:9c61834c191b

Remove th_llist_delete() and th_llist_delete_node() and rename th_llist_delete_node_fast() to th_llist_delete_node().
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 09 Mar 2020 15:20:49 +0200
parents 6d2d3b512750
children 4ca6a3b30fe8
line wrap: on
line diff
--- a/th_network.c	Fri Mar 06 20:55:43 2020 +0200
+++ b/th_network.c	Mon Mar 09 15:20:49 2020 +0200
@@ -711,7 +711,7 @@
     {
         // Remove from linked list
         if (conn->node != NULL)
-            th_llist_delete_node_fast(&th_conn_list, conn->node);
+            th_llist_delete_node(&th_conn_list, conn->node);
 
         // Free connection data
         th_conn_free_nodelete(conn);