summaryrefslogtreecommitdiff
path: root/lib/splay.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-07-15 18:57:51 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-07-15 18:57:51 +0000
commit3b0a920fad679038eb87ac0df4569d92b4d4f9ea (patch)
tree348394cf51dc96363b2a395a567e93bbf7d4cb95 /lib/splay.h
parentdaef1cf34d6df8b199cf2081bda4b1b4d1916b97 (diff)
downloadgnurl-3b0a920fad679038eb87ac0df4569d92b4d4f9ea.tar.gz
gnurl-3b0a920fad679038eb87ac0df4569d92b4d4f9ea.tar.bz2
gnurl-3b0a920fad679038eb87ac0df4569d92b4d4f9ea.zip
don't use 'new' in the proto
Diffstat (limited to 'lib/splay.h')
-rw-r--r--lib/splay.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/splay.h b/lib/splay.h
index 092c0b7fe..16745341e 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);