xencpu plugin: Remove unnecessary semicolons.
authorFlorian Forster <octo@collectd.org>
Wed, 3 Aug 2016 05:19:28 +0000 (07:19 +0200)
committerFlorian Forster <octo@collectd.org>
Wed, 3 Aug 2016 05:19:30 +0000 (07:19 +0200)
src/xencpu.c

index 2b87235..ab05396 100644 (file)
@@ -53,7 +53,7 @@ static int xencpu_init (void)
     {
         ERROR ("xencpu: xc_interface_open() failed");
         return (-1);
-    };
+    }
 
     xc_physinfo_t *physinfo;
 
@@ -71,7 +71,7 @@ static int xencpu_init (void)
         xc_interface_close(xc_handle);
         free(physinfo);
         return (-1);
-    };
+    }
 
     num_cpus = physinfo->nr_cpus;
     free(physinfo);