]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: mworker: fix tab/space mess in mworker_env_to_proc_list()
authorWilliam Lallemand <wlallemand@haproxy.com>
Thu, 19 Mar 2026 17:01:06 +0000 (18:01 +0100)
committerWilliam Lallemand <wlallemand@haproxy.com>
Thu, 19 Mar 2026 17:01:06 +0000 (18:01 +0100)
The previous patch messed up with the indentation in
mworker_env_to_proc_list()

src/mworker.c

index d1513f3ac5d1e4a9664f6b8fe753b2f67a2b6a59..45da7290e5fbdfbda14876e4c86b7f1edf556313 100644 (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;