diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-06-14 03:29:35 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-06-14 03:29:35 +0000 |
commit | 4c6abb7bc0e382a4196ec4b0e38dff800b1631df (patch) | |
tree | 13d4701745f7fcc5b3095d51ecb98d41c8f9c656 /sys/arch/hppa | |
parent | 096f1fa7d8139f8469e269112fb4efa6602528bd (diff) |
do not depend on previous loop variable, use a constant instead
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r-- | sys/arch/hppa/hppa/disksubr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/hppa/hppa/disksubr.c b/sys/arch/hppa/hppa/disksubr.c index 718c8e85026..81bd44c9c5c 100644 --- a/sys/arch/hppa/hppa/disksubr.c +++ b/sys/arch/hppa/hppa/disksubr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: disksubr.c,v 1.62 2007/06/09 23:06:46 krw Exp $ */ +/* $OpenBSD: disksubr.c,v 1.63 2007/06/14 03:29:34 deraadt Exp $ */ /* * Copyright (c) 1999 Michael Shalayeff @@ -147,9 +147,9 @@ readdisklabel(dev_t dev, void (*strat)(struct buf *), DL_SETPSIZE(&lp->d_partitions[i], 0); DL_SETPOFFSET(&lp->d_partitions[i], 0); } - if (DL_GETPSIZE(&lp->d_partitions[i]) == 0) - DL_SETPSIZE(&lp->d_partitions[i], DL_GETDSIZE(lp)); - DL_SETPOFFSET(&lp->d_partitions[i], 0); + if (DL_GETPSIZE(&lp->d_partitions[RAW_PART]) == 0) + DL_SETPSIZE(&lp->d_partitions[RAW_PART], DL_GETDSIZE(lp)); + DL_SETPOFFSET(&lp->d_partitions[RAW_PART], 0); minilabel = fallbacklabel = *lp; /* get a buffer and initialize it */ |