From 28f8935c3518a0faad0c1d7ef51f89abd1b50da8 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Wed, 3 Aug 2016 07:19:28 +0200 Subject: [PATCH] xencpu plugin: Remove unnecessary semicolons. --- src/xencpu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xencpu.c b/src/xencpu.c index 2b872350..ab053965 100644 --- a/src/xencpu.c +++ b/src/xencpu.c @@ -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); -- 2.11.0