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:
Steve Holme 2013-03-21 19:14:03 +00:00
parent c0c46c3137
commit d85647cfdd
1 changed files with 5 additions and 5 deletions

View File

@ -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;
}