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

This commit is contained in:
peter 2000-08-02 21:05:21 +00:00
parent 87d4149e5d
commit ee51d18b57

View File

@ -191,7 +191,7 @@ restart:
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;