* [PATCH] lib: rbtree: Fixed assign coding style issue
@ 2018-09-16 0:20 Pablo Pellecchia
0 siblings, 0 replies; 2+ messages in thread
From: Pablo Pellecchia @ 2018-09-16 0:20 UTC (permalink / raw)
To: akpm; +Cc: linux-kernel, Pablo Pellecchia
Fixed coding style issue.
Signed-off-by: Pablo Pellecchia <pablo9891@gmail.com>
---
lib/rbtree.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/rbtree.c b/lib/rbtree.c
index d3ff682fd4b8..c47745c39671 100644
--- a/lib/rbtree.c
+++ b/lib/rbtree.c
@@ -539,7 +539,7 @@ struct rb_node *rb_next(const struct rb_node *node)
if (node->rb_right) {
node = node->rb_right;
while (node->rb_left)
- node=node->rb_left;
+ node = node->rb_left;
return (struct rb_node *)node;
}
--
2.14.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH] lib: rbtree: Fixed assign coding style issue
@ 2018-09-07 3:23 Pablo Pellecchia
0 siblings, 0 replies; 2+ messages in thread
From: Pablo Pellecchia @ 2018-09-07 3:23 UTC (permalink / raw)
To: akpm; +Cc: linux-kernel, Pablo Pellecchia
Fixed coding style issue.
Signed-off-by: Pablo Pellecchia <pablo9891@gmail.com>
---
lib/rbtree.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/rbtree.c b/lib/rbtree.c
index d3ff682fd4b8..c47745c39671 100644
--- a/lib/rbtree.c
+++ b/lib/rbtree.c
@@ -539,7 +539,7 @@ struct rb_node *rb_next(const struct rb_node *node)
if (node->rb_right) {
node = node->rb_right;
while (node->rb_left)
- node=node->rb_left;
+ node = node->rb_left;
return (struct rb_node *)node;
}
--
2.14.1
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-09-16 0:21 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-16 0:20 [PATCH] lib: rbtree: Fixed assign coding style issue Pablo Pellecchia
-- strict thread matches above, loose matches on Subject: below --
2018-09-07 3:23 Pablo Pellecchia
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome