summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2017-12-30 17:49:04 +0100
committerraveit65 <[email protected]>2017-12-31 13:13:48 +0100
commit76c0ee4bcb34bcc683261ce81adbde85781810bb (patch)
treed0fda868442d649702ddb45cd3826e693fa0d84a
parent4fbc5492eab3e7116ea7a8a820fab3b170e59e04 (diff)
downloadmate-system-monitor-76c0ee4bcb34bcc683261ce81adbde85781810bb.tar.bz2
mate-system-monitor-76c0ee4bcb34bcc683261ce81adbde85781810bb.tar.xz
sysinfo.cpp: Fix build warning: this ‘if’ clause does not guard...
...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’
-rw-r--r--src/sysinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysinfo.cpp b/src/sysinfo.cpp
index 01b0492..4392fa4 100644
--- a/src/sysinfo.cpp
+++ b/src/sysinfo.cpp
@@ -485,7 +485,7 @@ namespace {
if (error)
g_error_free(error);
- g_free(out);
+ g_free(out);
}
private: