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 /tests/libtest/lib506.c | |
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 'tests/libtest/lib506.c')
-rw-r--r-- | tests/libtest/lib506.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/libtest/lib506.c b/tests/libtest/lib506.c index 0a2a0d163..eaf96d2e9 100644 --- a/tests/libtest/lib506.c +++ b/tests/libtest/lib506.c @@ -31,14 +31,14 @@ struct userdata { }; /* lock callback */ -static void my_lock(CURL *handle, curl_lock_data data, curl_lock_access access, +static void my_lock(CURL *handle, curl_lock_data data, curl_lock_access laccess, void *useptr ) { const char *what; struct userdata *user = (struct userdata *)useptr; (void)handle; - (void)access; + (void)laccess; switch ( data ) { case CURL_LOCK_DATA_SHARE: |