diff options
author | julian <julian@FreeBSD.org> | 2003-08-02 16:45:32 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 2003-08-02 16:45:32 +0000 |
commit | 0aaea9d619e8ac45fa31d27bb107b49e21e7195c (patch) | |
tree | 9e56bd80aa13d4e7ddb568c3c8a3e33895bc95e5 | |
parent | 06b828941c28fb7ad4c2112e519547b0ec74b8e4 (diff) | |
download | FreeBSD-src-0aaea9d619e8ac45fa31d27bb107b49e21e7195c.zip FreeBSD-src-0aaea9d619e8ac45fa31d27bb107b49e21e7195c.tar.gz |
fix braino in last commit.
Beaten with clue-stick by: Davidxu
-rw-r--r-- | sys/i386/i386/sys_machdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/i386/sys_machdep.c b/sys/i386/i386/sys_machdep.c index 4d244cc..a3330cf 100644 --- a/sys/i386/i386/sys_machdep.c +++ b/sys/i386/i386/sys_machdep.c @@ -579,7 +579,7 @@ again: * start scanning a bit up to leave room for NVidia and * Wine, which still user the "Blat" method of allocation. */ - for (i = NLDT + 1; i < pldt->ldt_len; ++i) { + for (i = NLDT; i < pldt->ldt_len; ++i) { if (dp->sd.sd_type == SDT_SYSNULL) break; dp++; |