Fix bEnd
This commit is contained in:
parent
63935a1b5f
commit
95e8cb1cb1
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ growdisk(struct system_config *sc)
|
||||||
}
|
}
|
||||||
|
|
||||||
bend = DL_GETDSIZE(&lp) - DL_GETBSTART(&lp);
|
bend = DL_GETDSIZE(&lp) - DL_GETBSTART(&lp);
|
||||||
psize = DL_GETBEND(&lp) - DL_GETPOFFSET(p);
|
psize = bend - DL_GETPOFFSET(p);
|
||||||
|
|
||||||
if (sc->sc_dryrun ||
|
if (sc->sc_dryrun ||
|
||||||
(bend == DL_GETBEND(&lp) && psize == DL_GETPSIZE(p))) {
|
(bend == DL_GETBEND(&lp) && psize == DL_GETPSIZE(p))) {
|
||||||
|
|
Loading…
Reference in a new issue