CLEANUP: mworker: fix tab/space mess in mworker_env_to_proc_list()
Some checks are pending
Contrib / build (push) Waiting to run
alpine/musl / gcc (push) Waiting to run
VTest / Generate Build Matrix (push) Waiting to run
VTest / (push) Blocked by required conditions
Windows / Windows, gcc, all features (push) Waiting to run

The previous patch messed up with the indentation in
mworker_env_to_proc_list()
This commit is contained in:
William Lallemand 2026-03-19 18:01:06 +01:00
parent 4c61e9028c
commit f1e8173a43

View file

@ -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;