summary refs log tree commit diff stats
path: root/plugins/sysinfo/unix/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/sysinfo/unix/parse.c')
-rw-r--r--plugins/sysinfo/unix/parse.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/sysinfo/unix/parse.c b/plugins/sysinfo/unix/parse.c
index 748f75be..8e1e8bb7 100644
--- a/plugins/sysinfo/unix/parse.c
+++ b/plugins/sysinfo/unix/parse.c
@@ -271,12 +271,12 @@ int xs_parse_meminfo(unsigned long long *mem_tot, unsigned long long *mem_free,
 
 static void strip_quotes(char *string)
 {
-  size_t len = strlen(string);
-  if (string[len - 1] == '"')
-	string[--len] = '\0';
+	size_t len = strlen(string);
+	if (string[len - 1] == '"')
+		string[--len] = '\0';
 
-  if (string[0] == '"')
-	memmove(string, string + 1, len + 1);
+	if (string[0] == '"')
+		memmove(string, string + 1, len);
 }
 
 int xs_parse_distro(char *name)