projects
/
platform
/
upstream
/
glib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3aa0fc4
)
Fix a little comment error in the _GTreeNode struct
author
Geek87
<geek87@gmx.com>
Mon, 25 Jul 2011 11:06:02 +0000
(13:06 +0200)
committer
Matthias Clasen
<mclasen@redhat.com>
Wed, 30 Nov 2011 03:16:52 +0000
(22:16 -0500)
https://bugzilla.gnome.org/show_bug.cgi?id=648516
glib/gtree.c
patch
|
blob
|
history
diff --git
a/glib/gtree.c
b/glib/gtree.c
index 9bd9fa84cd14171dc78efd425b28feeadce2c917..b78d933ef7b1b3fa818135ab5020ee41e3d037d0 100644
(file)
--- a/
glib/gtree.c
+++ b/
glib/gtree.c
@@
-95,7
+95,7
@@
struct _GTreeNode
gpointer value; /* value stored at this node */
GTreeNode *left; /* left subtree */
GTreeNode *right; /* right subtree */
- gint8 balance; /* height (
left) - height (righ
t) */
+ gint8 balance; /* height (
right) - height (lef
t) */
guint8 left_child;
guint8 right_child;
};