From f1e8173a436e111dcda75d35b04f46bf9df5e815 Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Thu, 19 Mar 2026 18:01:06 +0100 Subject: [PATCH] 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() --- src/mworker.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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;