mirror of
https://github.com/haproxy/haproxy.git
synced 2026-03-21 10:00:32 -04:00
CLEANUP: mworker: fix tab/space mess in mworker_env_to_proc_list()
The previous patch messed up with the indentation in mworker_env_to_proc_list()
This commit is contained in:
parent
4c61e9028c
commit
f1e8173a43
1 changed files with 4 additions and 4 deletions
|
|
@ -226,11 +226,11 @@ int mworker_env_to_proc_list()
|
|||
struct list *insert_pt = &proc_list;
|
||||
struct mworker_proc *pos;
|
||||
|
||||
/* insert at the right position in ASC reload order;
|
||||
* search from the tail since items are sorted most of
|
||||
/* insert at the right position in ASC reload order;
|
||||
* search from the tail since items are sorted most of
|
||||
* the time
|
||||
*/
|
||||
list_for_each_entry_rev(pos, &proc_list, list) {
|
||||
*/
|
||||
list_for_each_entry_rev(pos, &proc_list, list) {
|
||||
if (pos->reloads <= child->reloads) {
|
||||
insert_pt = &pos->list;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue