Fix the SYSINIT() bubble sort. This was fixed in kern_linker.c already.

This commit is contained in:
Peter Wemm 2000-08-02 21:05:21 +00:00
parent c3a39688f9
commit af4b2d2d1c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=64142

View File

@ -191,7 +191,7 @@ mi_startup(framep)
for (xipp = sipp + 1; *xipp; xipp++) {
if ((*sipp)->subsystem < (*xipp)->subsystem ||
((*sipp)->subsystem == (*xipp)->subsystem &&
(*sipp)->order < (*xipp)->order))
(*sipp)->order <= (*xipp)->order))
continue; /* skip*/
save = *sipp;
*sipp = *xipp;