diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 03:16:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 03:16:15 +0000 |
commit | e63dc855fe4ff1aa0029ebf9813134860a34ccdf (patch) | |
tree | c2aa960c67a99a878c8902943399029fa598683f /sys/arch/sun3/dev/idprom.c | |
parent | 71eb96ce8a9190e7ffeccbabd7a5ec4f3b4fc72f (diff) |
Final __P removal plus some cosmetic fixups
Diffstat (limited to 'sys/arch/sun3/dev/idprom.c')
-rw-r--r-- | sys/arch/sun3/dev/idprom.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sun3/dev/idprom.c b/sys/arch/sun3/dev/idprom.c index f0939215305..894f76e52f8 100644 --- a/sys/arch/sun3/dev/idprom.c +++ b/sys/arch/sun3/dev/idprom.c @@ -1,4 +1,4 @@ -/* $OpenBSD: idprom.c,v 1.6 1997/01/16 04:03:46 kstailey Exp $ */ +/* $OpenBSD: idprom.c,v 1.7 2002/03/14 03:16:01 millert Exp $ */ /* $NetBSD: idprom.c,v 1.13 1996/11/20 18:56:50 gwr Exp $ */ /*- @@ -115,8 +115,8 @@ idprom_init() } hid; idp = &identity_prom; - dst = (char*)idp; - src = (char*)IDPROM_BASE; + dst = (char *)idp; + src = (char *)IDPROM_BASE; len = IDPROM_SIZE; xorsum = 0; /* calculated as xor of data */ |