projects
/
dana
/
cg-glib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
933d318
)
Remove variable assignments that are never read.
author
Dana Jansens
<danakj@orodu.net>
Wed, 11 Nov 2009 20:57:31 +0000
(15:57 -0500)
committer
Dana Jansens
<danakj@orodu.net>
Thu, 12 Nov 2009 22:21:09 +0000
(17:21 -0500)
glib/gtree.c
patch
|
blob
|
history
diff --git
a/glib/gtree.c
b/glib/gtree.c
index 5b8ba818eb305ac5c80546f7b900e1a3a1060a71..858e93169685fda31b3dc9aff91780280ab5e12a 100644
(file)
--- a/
glib/gtree.c
+++ b/
glib/gtree.c
@@
-360,7
+360,6
@@
g_tree_node_previous (GTreeNode *node,
if (tmpv->right == node)
break;
node = tmp;
- nodev = tmpv;
tmp = tmpv->parent;
}
}
@@
-391,7
+390,6
@@
g_tree_node_next (GTreeNode *node,
if (tmpv->left == node)
break;
node = tmp;
- nodev = tmpv;
tmp = tmpv->parent;
}
}