aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mate
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2011-04-21 13:33:04 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2011-04-21 13:33:04 +0000
commit0c598a950d55b4fb7398c62b08693fe36559675a (patch)
treefa592c61fe4205b5678086454adb1d8f41748491 /plugins/mate
parent5388b8a42ab6cef83fd389ddead810c2b507a8db (diff)
Fix Dead Store (Dead nested assignment) Warning found by Clang
svn path=/trunk/; revision=36756
Diffstat (limited to 'plugins/mate')
-rw-r--r--plugins/mate/mate_runtime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mate/mate_runtime.c b/plugins/mate/mate_runtime.c
index d0bd5d8d95..ca6c3d811c 100644
--- a/plugins/mate/mate_runtime.c
+++ b/plugins/mate/mate_runtime.c
@@ -385,7 +385,7 @@ static void analyze_gop(mate_gop* gop) {
mate_gog* gog = NULL;
gchar* key = NULL;
- if ( ! ( gog = gop->gog ) ) {
+ if ( ! gop->gog ) {
/* no gog, let's either find one or create it if due */
dbg_print (dbg_gog,1,dbg_facility,"analyze_gop: no gog");