From: Daniel Stenberg Date: Sat, 15 Jul 2006 18:57:51 +0000 (+0000) Subject: don't use 'new' in the proto X-Git-Tag: curl-7_15_5~95 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3b0a920fad679038eb87ac0df4569d92b4d4f9ea;p=thirdparty%2Fcurl.git don't use 'new' in the proto --- diff --git a/lib/splay.h b/lib/splay.h index 092c0b7fe7..16745341e9 100644 --- a/lib/splay.h +++ b/lib/splay.h @@ -33,7 +33,7 @@ struct Curl_tree { struct Curl_tree *Curl_splay(int i, struct Curl_tree *t); struct Curl_tree *Curl_splayinsert(int key, struct Curl_tree *t, - struct Curl_tree *new); + struct Curl_tree *newnode); #if 0 struct Curl_tree *Curl_splayremove(int key, struct Curl_tree *t, struct Curl_tree **removed);