diff options
| author | Ed Schouten <ed@FreeBSD.org> | 2010-06-13 11:27:44 +0000 |
|---|---|---|
| committer | Ed Schouten <ed@FreeBSD.org> | 2010-06-13 11:27:44 +0000 |
| commit | 03b7d7deefe5fe3a76844a4fb7cde7979ceebea3 (patch) | |
| tree | cf194eb77d8df6237bc1628c92581a76a285210f /usr.sbin/sysinstall | |
| parent | b2c6fcf9860116ec9b400066a61ceefa9d018b9a (diff) | |
Notes
Diffstat (limited to 'usr.sbin/sysinstall')
| -rw-r--r-- | usr.sbin/sysinstall/install.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/install.c b/usr.sbin/sysinstall/install.c index 5418bdf00c6f..3a77f8ffcc70 100644 --- a/usr.sbin/sysinstall/install.c +++ b/usr.sbin/sysinstall/install.c @@ -628,8 +628,11 @@ installExpress(dialogMenuItem *self) int installStandard(dialogMenuItem *self) { - int i, tries = 0; + int i; +#ifdef WITH_SLICES + int tries = 0; Device **devs; +#endif variable_set2(SYSTEM_STATE, "standard", 0); dialog_clear_norefresh(); @@ -874,7 +877,9 @@ installConfigure(void) int installFixupBase(dialogMenuItem *self) { +#if defined(__i386__) || defined(__amd64__) FILE *fp; +#endif #ifdef __ia64__ const char *efi_mntpt; #endif |
