Skip to content

Commit ea542bd

Browse files
committed
Rewrite 'q_free'
Rewrite 'q_free' function to align coding style. Change-Id: I8c729877e231c168eb35eef166e0af2a5ebe189c
1 parent 3360075 commit ea542bd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

queue.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ void q_free(struct list_head *head)
7474
if (!head)
7575
return;
7676

77-
struct list_head *current, *safe;
78-
list_for_each_safe (current, safe, head) {
79-
element_t *release_pos = list_entry(current, element_t, list);
80-
q_release_element(release_pos);
77+
struct list_head *curr, *safe;
78+
list_for_each_safe (curr, safe, head) {
79+
element_t *node = list_entry(curr, element_t, list);
80+
q_release_element(node);
8181
}
8282
free(head);
8383
}

0 commit comments

Comments
 (0)