diff options
author | gpalmer <gpalmer@FreeBSD.org> | 1998-08-21 23:44:16 +0000 |
---|---|---|
committer | gpalmer <gpalmer@FreeBSD.org> | 1998-08-21 23:44:16 +0000 |
commit | 83d0a1cbadb8ba309fe95e6669b3ca3945eac04a (patch) | |
tree | c68194fedbc5e31eb2bd4361d9b09cf90005e860 /sbin/bsdlabel | |
parent | 255afcebdd1113075a4de59ec71d6c7054d4c1e3 (diff) | |
download | FreeBSD-src-83d0a1cbadb8ba309fe95e6669b3ca3945eac04a.zip FreeBSD-src-83d0a1cbadb8ba309fe95e6669b3ca3945eac04a.tar.gz |
Try to make this compile on both alpha and i386
Diffstat (limited to 'sbin/bsdlabel')
-rw-r--r-- | sbin/bsdlabel/bsdlabel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/bsdlabel/bsdlabel.c b/sbin/bsdlabel/bsdlabel.c index ad6f11b3..9f48711 100644 --- a/sbin/bsdlabel/bsdlabel.c +++ b/sbin/bsdlabel/bsdlabel.c @@ -46,7 +46,7 @@ static char sccsid[] = "@(#)disklabel.c 8.2 (Berkeley) 1/7/94"; /* from static char sccsid[] = "@(#)disklabel.c 1.2 (Symmetric) 11/28/85"; */ #endif static const char rcsid[] = - "$Id: disklabel.c,v 1.18 1998/08/17 07:43:54 dfr Exp $"; + "$Id: disklabel.c,v 1.19 1998/08/17 21:13:57 bde Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -548,7 +548,6 @@ makebootarea(boot, dp, f) register struct disklabel *dp; int f; { - struct disklabel *lp; register char *p; int b; #if NUMBOOT > 0 @@ -560,6 +559,7 @@ makebootarea(boot, dp, f) int n; #endif #ifdef __i386__ + struct disklabel *lp; char *tmpbuf; int i, found; #endif |