multi.c: Corrected a couple of violations of the curl coding standards
authorSteve Holme <steve_holme@hotmail.com>
Thu, 21 Mar 2013 19:14:03 +0000 (19:14 +0000)
committerSteve Holme <steve_holme@hotmail.com>
Thu, 21 Mar 2013 19:14:03 +0000 (19:14 +0000)
Corrected some incorrectly positioned pointer variable declarations to
be "type *" rather than "type* ".

lib/multi.c

index 5645fcf071c62e266f448ae481d70f17bbc6181c..7d795cf3ddbb4892064788aeb2f53a1816471059 100644 (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(voidkey, 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_multimulti)
+bool Curl_multi_pipeline_enabled(const struct Curl_multi *multi)
 {
   return (multi && multi->pipelining_enabled) ? TRUE : FALSE;
 }