diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2006-10-20 00:55:33 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2006-10-20 00:55:33 +0000 |
commit | 127a564923b789662f11170c3e2ad89c8557c75c (patch) | |
tree | 6591cf63a323c7bcb8f592c5e78e385540991537 /sys/arch | |
parent | e329091434e9d9657a6ff483d438b51fc2a63b0c (diff) |
Declare loop variable so this compiles.
ok krw@
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hp300/hp300/disksubr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/hp300/hp300/disksubr.c b/sys/arch/hp300/hp300/disksubr.c index 62dfbb39dbc..ed5293078a5 100644 --- a/sys/arch/hp300/hp300/disksubr.c +++ b/sys/arch/hp300/hp300/disksubr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: disksubr.c,v 1.21 2006/09/24 22:43:00 krw Exp $ */ +/* $OpenBSD: disksubr.c,v 1.22 2006/10/20 00:55:32 jsg Exp $ */ /* $NetBSD: disksubr.c,v 1.9 1997/04/01 03:12:13 scottr Exp $ */ /* @@ -61,6 +61,7 @@ readdisklabel(dev, strat, lp, osdep, spoofonly) { struct buf *bp; struct disklabel *dlp; + int i; char *msg = NULL; /* minimal requirements for archetypal disk label */ |