From 9b3f888a00fe0c796e8ef7f00d03bb2adc2baa4e Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 2 Sep 2020 12:06:20 +0200 Subject: llist: make it "struct Curl_llist" As internal global names should use captical C. Closes #5906 --- lib/altsvc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/altsvc.h') diff --git a/lib/altsvc.h b/lib/altsvc.h index 578a4fbfb..df2750493 100644 --- a/lib/altsvc.h +++ b/lib/altsvc.h @@ -46,12 +46,12 @@ struct altsvc { time_t expires; bool persist; int prio; - struct curl_llist_element node; + struct Curl_llist_element node; }; struct altsvcinfo { char *filename; - struct curl_llist list; /* list of entries */ + struct Curl_llist list; /* list of entries */ long flags; /* the publicly set bitmask */ }; -- cgit v1.2.1