Skip to content

Commit 3c533fb

Browse files
committed
Modify 'q_remove_head'
Modify operation logic of 'q_remove_head' function. Change-Id: Ia8778cd75e01b53cbd504302390117b195622445
1 parent d00b47d commit 3c533fb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

queue.c

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ element_t *q_remove_head(struct list_head *head, char *sp, size_t bufsize)
122122

123123
list_del_init(head->next);
124124
return element;
125+
// return q_remove(head->next, sp, bufsize);
125126
}
126127

127128
/* Remove an element from tail of queue */

0 commit comments

Comments
 (0)