Remove an unnecessary (and undefined, due to lack of a sequence point)

assignment.
This commit is contained in:
thorpej 2002-05-30 21:00:23 +00:00
parent 81127fce22
commit 85af08accf
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: amiga_init.c,v 1.77 2002/04/25 09:20:25 aymeric Exp $ */ /* $NetBSD: amiga_init.c,v 1.78 2002/05/30 21:00:23 thorpej Exp $ */
/* /*
* Copyright (c) 1994 Michael L. Hitch * Copyright (c) 1994 Michael L. Hitch
@ -35,7 +35,7 @@
#include "opt_p5ppc68kboard.h" #include "opt_p5ppc68kboard.h"
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: amiga_init.c,v 1.77 2002/04/25 09:20:25 aymeric Exp $"); __KERNEL_RCSID(0, "$NetBSD: amiga_init.c,v 1.78 2002/05/30 21:00:23 thorpej Exp $");
#include <sys/param.h> #include <sys/param.h>
#include <sys/systm.h> #include <sys/systm.h>
@ -611,7 +611,7 @@ start_c(id, fphystart, fphysize, cphysize, esym_addr, flags, inh_sync, boot_part
for (; i<RELOC(Sysseg, u_int); i+= NBPG, pg_proto += NBPG) for (; i<RELOC(Sysseg, u_int); i+= NBPG, pg_proto += NBPG)
*pg++ = pg_proto; *pg++ = pg_proto;
pg_proto = (pg_proto &= ~PG_CCB) | PG_CI; pg_proto = (pg_proto & ~PG_CCB) | PG_CI;
for (; i < vstart; i += NBPG, pg_proto += NBPG) for (; i < vstart; i += NBPG, pg_proto += NBPG)
*pg++ = pg_proto; *pg++ = pg_proto;