1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-19 15:33:56 +00:00

fix typo in runz_fuzz

noticed by:Elijah Buck
This commit is contained in:
Julian Elischer 2008-05-12 06:42:06 +00:00
parent fff0ededf8
commit 681e40627d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=178961

View File

@ -394,7 +394,7 @@ runq_choose_fuzz(struct runq *rq, int fuzz)
td2 = td = TAILQ_FIRST(rqh);
while (count-- && td2) {
if (td->td_lastcpu == cpu) {
if (td2->td_lastcpu == cpu) {
td = td2;
break;
}