projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
98858ed
)
- Fix bug in case 2/4 denomination.
author
Alex Ionescu
<aionescu@gmail.com>
Tue, 8 Nov 2005 23:42:40 +0000
(23:42 +0000)
committer
Alex Ionescu
<aionescu@gmail.com>
Tue, 8 Nov 2005 23:42:40 +0000
(23:42 +0000)
svn path=/trunk/; revision=19075
reactos/lib/rtl/splaytree.c
patch
|
blob
|
history
diff --git
a/reactos/lib/rtl/splaytree.c
b/reactos/lib/rtl/splaytree.c
index
ecce34f
..
c315a72
100644
(file)
--- a/
reactos/lib/rtl/splaytree.c
+++ b/
reactos/lib/rtl/splaytree.c
@@
-255,13
+255,13
@@
RtlSplay(PRTL_SPLAY_LINKS Links)
/* Case 2 & 4: N is right child of P */
else
{
- /* Case 2: P is the
lef
t child of G */
- if (RtlIs
Lef
tChild(P))
+ /* Case 2: P is the
righ
t child of G */
+ if (RtlIs
Righ
tChild(P))
{
}
- /* Case 4: P is the
righ
t child of G */
- else if (RtlIs
Righ
tChild(P))
+ /* Case 4: P is the
lef
t child of G */
+ else if (RtlIs
Lef
tChild(P))
{
}