git: 6d6fdcbdd87f - stable/14 - rtld: remove stray tabs
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 10 May 2025 19:33:14 UTC
The branch stable/14 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=6d6fdcbdd87f9f8916b273a1974bbe520289a6a3 commit 6d6fdcbdd87f9f8916b273a1974bbe520289a6a3 Author: Konstantin Belousov <kib@FreeBSD.org> AuthorDate: 2025-05-08 23:56:02 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2025-05-10 18:57:46 +0000 rtld: remove stray tabs (cherry picked from commit 33759fc7e823be533d4ab0611950f8264de06ecc) --- libexec/rtld-elf/rtld.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libexec/rtld-elf/rtld.c b/libexec/rtld-elf/rtld.c index 8a3129093e8c..7120cc176b04 100644 --- a/libexec/rtld-elf/rtld.c +++ b/libexec/rtld-elf/rtld.c @@ -2610,7 +2610,7 @@ initlist_add_objects(Obj_Entry *obj, Obj_Entry *tail, Objlist *list, nobj = globallist_next(obj); if (nobj != NULL && obj != tail) initlist_add_objects(nobj, tail, list, iflist); - + /* Recursively process the needed objects. */ if (obj->needed != NULL) initlist_add_neededs(obj->needed, list, iflist); @@ -2620,7 +2620,7 @@ initlist_add_objects(Obj_Entry *obj, Obj_Entry *tail, Objlist *list, if (obj->needed_aux_filtees != NULL) initlist_add_neededs(obj->needed_aux_filtees, list, iflist); - + /* Add the object to the init list. */ objlist_push_tail(list, obj);