aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mate/mate_runtime.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-05-19 14:11:01 +0000
committerBill Meier <wmeier@newsguy.com>2011-05-19 14:11:01 +0000
commit7062abeb008514ebbde2bf46261c7762ba9b59de (patch)
tree18e64c6ceedbbbf9c4a362e0ec691eede4b42eff /plugins/mate/mate_runtime.c
parent307d7e8c3cb6836c51ee0e65eb9feca34b3e4967 (diff)
Don't assign a value to a variable which is then never used: Coverity 1160 [UNUSED]
svn path=/trunk/; revision=37290
Diffstat (limited to 'plugins/mate/mate_runtime.c')
-rw-r--r--plugins/mate/mate_runtime.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/mate/mate_runtime.c b/plugins/mate/mate_runtime.c
index ca6c3d811c..62024e3328 100644
--- a/plugins/mate/mate_runtime.c
+++ b/plugins/mate/mate_runtime.c
@@ -162,9 +162,9 @@ extern void initialize_mate_runtime(void) {
dbg_gop = &(mc->dbg_gop_lvl);
dbg_gog = &(mc->dbg_gog_lvl);
dbg = &(mc->dbg_lvl);
- dbg_facility = mc->dbg_facility;
+ dbg_facility = mc->dbg_facility;
- dbg_print(dbg, 1, dbg_facility, "starting mate");
+ dbg_print(dbg, 1, dbg_facility, "starting mate");
} else {
rd = NULL;
@@ -415,7 +415,7 @@ static void analyze_gop(mate_gop* gop) {
gog_remove_keys(gog);
- gog = new_gog(gog->cfg,gop);
+ new_gog(gog->cfg,gop);
break;
} else {
@@ -465,7 +465,7 @@ static void analyze_gop(mate_gop* gop) {
static void analyze_pdu(mate_pdu* pdu) {
/* TODO:
- return a g_boolean to tell we've destroyed the pdu when the pdu is unnassigned
+ return a g_boolean to tell we've destroyed the pdu when the pdu is unnassigned
destroy the unassigned pdu
*/
mate_cfg_gop* cfg = NULL;