diff options
author | Pablo Barciela <[email protected]> | 2017-12-30 17:49:04 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-12-31 13:13:48 +0100 |
commit | 76c0ee4bcb34bcc683261ce81adbde85781810bb (patch) | |
tree | d0fda868442d649702ddb45cd3826e693fa0d84a | |
parent | 4fbc5492eab3e7116ea7a8a820fab3b170e59e04 (diff) | |
download | mate-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.cpp | 2 |
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: |