[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <4A918BAF.8020600@gmail.com>
Date: Sun, 23 Aug 2009 20:34:23 +0200
From: Marcin Slusarz <marcin.slusarz@...il.com>
To: LKML <linux-kernel@...r.kernel.org>
CC: Rob Landley <rob@...dley.net>, Randy Dunlap <rdunlap@...otime.net>,
Andrew Morton <akpm@...ux-foundation.org>,
linux-doc@...r.kernel.org
Subject: [PATCH] doc/rbtree: fix inserting example
rb_link_node and rb_insert_color take pointer to struct rb_node
as a first parameter, but example code passes plain struct rb_node.
Fix it.
Signed-off-by: Marcin Slusarz <marcin.slusarz@...il.com>
Cc: Rob Landley <rob@...dley.net>
Cc: Randy Dunlap <rdunlap@...otime.net>
Cc: Andrew Morton <akpm@...ux-foundation.org>
---
Documentation/rbtree.txt | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/rbtree.txt b/Documentation/rbtree.txt
index 7224459..b67a87e 100644
--- a/Documentation/rbtree.txt
+++ b/Documentation/rbtree.txt
@@ -131,8 +131,8 @@ Example:
}
/* Add new node and rebalance tree. */
- rb_link_node(data->node, parent, new);
- rb_insert_color(data->node, root);
+ rb_link_node(&data->node, parent, new);
+ rb_insert_color(&data->node, root);
return TRUE;
}
--
1.6.3.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists