From: Alan Cox Date: Thu, 14 Dec 2017 13:45:29 +0000 (+0000) Subject: kernel: fix typo in process change X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=3d4248e00528e5a1887646497ddab646e8c19311;p=FUZIX.git kernel: fix typo in process change --- diff --git a/Kernel/process.c b/Kernel/process.c index 0e1a908b..29e78b09 100644 --- a/Kernel/process.c +++ b/Kernel/process.c @@ -256,7 +256,7 @@ ptptr ptab_alloc(void) udata.u_error = EAGAIN; irq = di(); - for (p = ptab; p < ptab_end; p++) + for (p = ptab; p < ptab_end; p++) { if (p->p_status == P_EMPTY) { newp = p; /* zero process structure */