diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-11-23 07:53:24 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-11-24 23:58:22 +0100 |
commit | dbadaebfc4e9d453232795f54d4fe5618cf8e84d (patch) | |
tree | 5899d1f99ce0d767d28d753e6e6552896d47d01f /lib/hash.c | |
parent | bc7e08471c1884a5100b6e0513a006c263ec3c6b (diff) | |
download | curl-dbadaebfc4e9d453232795f54d4fe5618cf8e84d.tar.gz |
checksrc: code style: use 'char *name' style
Diffstat (limited to 'lib/hash.c')
-rw-r--r-- | lib/hash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/hash.c b/lib/hash.c index 937381b65..72a7a9b70 100644 --- a/lib/hash.c +++ b/lib/hash.c @@ -291,9 +291,9 @@ Curl_hash_clean_with_criterium(struct curl_hash *h, void *user, } } -size_t Curl_hash_str(void* key, size_t key_length, size_t slots_num) +size_t Curl_hash_str(void *key, size_t key_length, size_t slots_num) { - const char* key_str = (const char *) key; + const char *key_str = (const char *) key; const char *end = key_str + key_length; unsigned long h = 5381; |