daemon/plugin.c: remove unneccesary casts
[collectd.git] / src / daemon / plugin.c
index bbf6144..13d4891 100644 (file)
@@ -627,7 +627,7 @@ static void start_read_threads(size_t num) /* {{{ */
   if (read_threads != NULL)
     return;
 
-  read_threads = (pthread_t *)calloc(num, sizeof(pthread_t));
+  read_threads = calloc(num, sizeof(pthread_t));
   if (read_threads == NULL) {
     ERROR("plugin: start_read_threads: calloc failed.");
     return;
@@ -816,7 +816,7 @@ static void start_write_threads(size_t num) /* {{{ */
   if (write_threads != NULL)
     return;
 
-  write_threads = (pthread_t *)calloc(num, sizeof(pthread_t));
+  write_threads = calloc(num, sizeof(pthread_t));
   if (write_threads == NULL) {
     ERROR("plugin: start_write_threads: calloc failed.");
     return;