diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-05-20 19:22:21 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-05-20 19:22:21 +0000 |
commit | cc1f1b8814281daf52c5dac1f306e25cc05c4740 (patch) | |
tree | 70972311b653735af9a1cb4bddc597a70e5c6d16 /release/sysinstall/disks.c | |
parent | 9f857b511d5977f8d7b2852932711251f254f29e (diff) | |
download | src-cc1f1b8814281daf52c5dac1f306e25cc05c4740.tar.gz src-cc1f1b8814281daf52c5dac1f306e25cc05c4740.zip |
Don't clear the screen for every redraw in the disklabel and
partition editors (ugh). Fix an utterly bogus message (no arguments :)
in dist.c. This should all make Poul a little happier and slide in
before the next CTM update window.
Notes
Notes:
svn path=/head/; revision=8659
Diffstat (limited to 'release/sysinstall/disks.c')
-rw-r--r-- | release/sysinstall/disks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/release/sysinstall/disks.c b/release/sysinstall/disks.c index f1f1693f4968..fd28106142a7 100644 --- a/release/sysinstall/disks.c +++ b/release/sysinstall/disks.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: disks.c,v 1.22 1995/05/18 09:01:50 jkh Exp $ + * $Id: disks.c,v 1.23 1995/05/20 10:33:02 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -79,7 +79,6 @@ print_chunks(Disk *d) int row; int i; - clear(); attrset(A_NORMAL); mvaddstr(0, 0, "Disk name:\t"); attrset(A_REVERSE); addstr(d->name); attrset(A_NORMAL); @@ -129,6 +128,7 @@ diskPartition(Disk *d) strncpy(name, d->name, 40); keypad(stdscr, TRUE); + clear(); record_chunks(d); while (chunking) { print_chunks(d); |