Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions queue.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ bool q_insert_tail(struct list_head *head, char *s);
/**
* q_remove_head() - Remove the element from head of queue
* @head: header of queue
* @sp: string would be inserted
* @sp: output buffer where the removed string is copied
* @bufsize: size of the string
*
* If sp is non-NULL and an element is removed, copy the removed string to *sp
Expand All @@ -101,7 +101,7 @@ element_t *q_remove_head(struct list_head *head, char *sp, size_t bufsize);
/**
* q_remove_tail() - Remove the element from tail of queue
* @head: header of queue
* @sp: string would be inserted
* @sp: output buffer where the removed string is copied
* @bufsize: size of the string
*
* Return: the pointer to element, %NULL if queue is NULL or empty.
Expand Down
2 changes: 1 addition & 1 deletion scripts/checksums
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
db6784ff3917888db4d1dceaa0570d99ed40e762 queue.h
45da6585400a15237f09d896bbb807f85f449e92 queue.h
9be9666430f392924f5d27caa71a412527bf9267 list.h
3bb0192cee08d165fd597a9f6fbb404533e28fcf scripts/check-commitlog.sh
Loading