mirror of
https://github.com/curl/curl.git
synced 2025-03-19 15:40:42 +08:00
multi.c: Corrected a couple of violations of the curl coding standards
Corrected some incorrectly positioned pointer variable declarations to be "type *" rather than "type* ".
This commit is contained in:
parent
c0c46c3137
commit
d85647cfdd
10
lib/multi.c
10
lib/multi.c
@ -213,16 +213,16 @@ static void sh_freeentry(void *freethis)
|
||||
free(p);
|
||||
}
|
||||
|
||||
static size_t fd_key_compare(void*k1, size_t k1_len, void*k2, size_t k2_len)
|
||||
static size_t fd_key_compare(void *k1, size_t k1_len, void *k2, size_t k2_len)
|
||||
{
|
||||
(void) k1_len; (void) k2_len;
|
||||
|
||||
return (*((int* ) k1)) == (*((int* ) k2));
|
||||
return (*((int *) k1)) == (*((int *) k2));
|
||||
}
|
||||
|
||||
static size_t hash_fd(void* key, size_t key_length, size_t slots_num)
|
||||
static size_t hash_fd(void *key, size_t key_length, size_t slots_num)
|
||||
{
|
||||
int fd = * ((int* ) key);
|
||||
int fd = *((int *) key);
|
||||
(void) key_length;
|
||||
|
||||
return (fd % (int)slots_num);
|
||||
@ -634,7 +634,7 @@ CURLMcode curl_multi_remove_handle(CURLM *multi_handle,
|
||||
return CURLM_BAD_EASY_HANDLE; /* twasn't found */
|
||||
}
|
||||
|
||||
bool Curl_multi_pipeline_enabled(const struct Curl_multi* multi)
|
||||
bool Curl_multi_pipeline_enabled(const struct Curl_multi *multi)
|
||||
{
|
||||
return (multi && multi->pipelining_enabled) ? TRUE : FALSE;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user