From: William Lallemand Date: Thu, 19 Mar 2026 17:01:06 +0000 (+0100) Subject: CLEANUP: mworker: fix tab/space mess in mworker_env_to_proc_list() X-Git-Tag: v3.4-dev7~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1e8173a436e111dcda75d35b04f46bf9df5e815;p=thirdparty%2Fhaproxy.git 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() --- diff --git a/src/mworker.c b/src/mworker.c index d1513f3ac..45da7290e 100644 --- a/src/mworker.c +++ b/src/mworker.c @@ -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;