From 5d2ecfef56e49a8e4bfad25a582ff1597987f717 Mon Sep 17 00:00:00 2001 From: dartraiden Date: Wed, 6 Nov 2024 20:55:13 +0300 Subject: libcurl: update to 8.11.0 --- libs/libcurl/src/llist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/libcurl/src/llist.c') diff --git a/libs/libcurl/src/llist.c b/libs/libcurl/src/llist.c index 4dafa6e0d1..3d57779338 100644 --- a/libs/libcurl/src/llist.c +++ b/libs/libcurl/src/llist.c @@ -96,7 +96,7 @@ Curl_llist_insert_next(struct Curl_llist *list, } else { /* if 'e' is NULL here, we insert the new element first in the list */ - ne->_next = e?e->_next:list->_head; + ne->_next = e ? e->_next : list->_head; ne->_prev = e; if(!e) { list->_head->_prev = ne; -- cgit v1.2.3