From 5e0d22c1b49fa1659b3165073e432fd8036a00a0 Mon Sep 17 00:00:00 2001 From: Brooks Davis Date: Thu, 14 Mar 2019 15:56:34 +0000 Subject: [PATCH] Style(9): add a missing space between argument declerations. --- sys/mips/mips/vm_machdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/mips/mips/vm_machdep.c b/sys/mips/mips/vm_machdep.c index 45fedeec0408..66a7202f75ec 100644 --- a/sys/mips/mips/vm_machdep.c +++ b/sys/mips/mips/vm_machdep.c @@ -88,7 +88,7 @@ __FBSDID("$FreeBSD$"); * ready to run and return to user mode. */ void -cpu_fork(struct thread *td1, struct proc *p2, struct thread *td2,int flags) +cpu_fork(struct thread *td1, struct proc *p2, struct thread *td2, int flags) { struct pcb *pcb2;