diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-09-02 12:07:44 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-09-02 22:41:58 +0200 |
commit | 9e90ff0839a2ad750faad0d8176cd7cc01c1dae2 (patch) | |
tree | c952a9703e63631fbb8c81250c96888b39da3f5b /tests/unit/unit1305.c | |
parent | 9b3f888a00fe0c796e8ef7f00d03bb2adc2baa4e (diff) | |
download | curl-9e90ff0839a2ad750faad0d8176cd7cc01c1dae2.tar.gz |
hash: make it 'struct Curl_hash'
As internal global names should use captical C.
Closes #5906
Diffstat (limited to 'tests/unit/unit1305.c')
-rw-r--r-- | tests/unit/unit1305.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/unit1305.c b/tests/unit/unit1305.c index 50f6da8bb..e53b8fdfa 100644 --- a/tests/unit/unit1305.c +++ b/tests/unit/unit1305.c @@ -40,7 +40,7 @@ #include "memdebug.h" /* LAST include file */ static struct Curl_easy *data; -static struct curl_hash hp; +static struct Curl_hash hp; static char *data_key; static struct Curl_dns_entry *data_node; |