mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-17 14:33:00 +02:00
installer: Fix showing selected disks
This commit is contained in:
@@ -451,7 +451,7 @@ int main(int argc, char *argv[]) {
|
||||
} else if (num_selected_disks == 2) {
|
||||
snprintf(message, sizeof(message),
|
||||
_("The installation program will now set up a RAID configuration on the selected harddisks:\n\n %s\n %s\n\n"
|
||||
"Do you agree to continue?"), (*selected_disks)->description, (*selected_disks + 1)->description);
|
||||
"Do you agree to continue?"), selected_disks[0]->description, selected_disks[1]->description);
|
||||
rc = newtWinOkCancel(_("RAID Setup"), message, 50, 14,
|
||||
_("Delete all data"), _("Cancel"));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user