diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2007-09-27 01:45:22 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2007-09-27 01:45:22 +0000 |
commit | 16b95fc77316fdd3866f7de4ebb5d14bd136ac11 (patch) | |
tree | b30e7469d7d0c15d766747c9405ded68894718d5 /lib/splay.h | |
parent | 9c5cd6c4137e2c0f238b6f767fe40fdacb9b6ede (diff) | |
download | curl-16b95fc77316fdd3866f7de4ebb5d14bd136ac11.tar.gz |
Enabled a few more gcc warnings with --enable-debug. Renamed a few
variables to avoid shadowing global declarations.
Diffstat (limited to 'lib/splay.h')
-rw-r--r-- | lib/splay.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/splay.h b/lib/splay.h index 16745341e..6e9191a63 100644 --- a/lib/splay.h +++ b/lib/splay.h @@ -42,7 +42,7 @@ struct Curl_tree *Curl_splayremove(int key, struct Curl_tree *t, struct Curl_tree *Curl_splaygetbest(int key, struct Curl_tree *t, struct Curl_tree **removed); int Curl_splayremovebyaddr(struct Curl_tree *t, - struct Curl_tree *remove, + struct Curl_tree *removenode, struct Curl_tree **newroot); #ifdef CURLDEBUG |