Remove parentheses around return arguments
[collectd.git] / src / ipvs.c
index 2446bd1..e614b93 100644 (file)
@@ -295,7 +295,7 @@ static int cipvs_read(void) {
   struct ip_vs_get_services *services = NULL;
 
   if (sockfd < 0)
-    return (-1);
+    return -1;
 
   if (NULL == (services = ipvs_get_services()))
     return -1;
@@ -321,5 +321,3 @@ void module_register(void) {
   plugin_register_shutdown("ipvs", cipvs_shutdown);
   return;
 } /* module_register */
-
-/* vim: set sw=4 ts=4 tw=78 noexpandtab : */