projects
/
platform
/
core
/
system
/
faultd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aa0cc67
)
fix
sandbox/mbloch/list_impl
author
Michal Bloch
<m.bloch@samsung.com>
Tue, 19 Sep 2017 12:34:43 +0000
(14:34 +0200)
committer
Michal Bloch
<m.bloch@samsung.com>
Tue, 19 Sep 2017 12:34:43 +0000
(14:34 +0200)
Change-Id: I5a4fa877990f921b9a8fa333951d0ae44018c2df
Signed-off-by: Michal Bloch <m.bloch@samsung.com>
src/util/list.h
patch
|
blob
|
history
diff --git
a/src/util/list.h
b/src/util/list.h
index fd28d8b7bf4227d68b32cbc9e45a5b26df713cc0..f052d99a4ab8af4bbdd4f678aa4323fca32219b6 100644
(file)
--- a/
src/util/list.h
+++ b/
src/util/list.h
@@
-39,8
+39,8
@@
struct list_head {
static inline void INIT_LIST_HEAD(struct list_head *head)
{
- head->next =
&
head;
- head->prev =
&
head;
+ head->next = head;
+ head->prev = head;
}
/*