[pve-devel] [PATCH installer 2/7] tui: fix small typo in error message
Christoph Heiss
c.heiss at proxmox.com
Thu Jul 13 11:49:26 CEST 2023
Fixes: 994c4ff ("tui: add better error handling to BootdiskOptions::get_values()")
Signed-off-by: Christoph Heiss <c.heiss at proxmox.com>
---
proxmox-tui-installer/src/views/bootdisk.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/proxmox-tui-installer/src/views/bootdisk.rs b/proxmox-tui-installer/src/views/bootdisk.rs
index 552cbc4..6ef814f 100644
--- a/proxmox-tui-installer/src/views/bootdisk.rs
+++ b/proxmox-tui-installer/src/views/bootdisk.rs
@@ -65,7 +65,7 @@ impl BootdiskOptionsView {
.and_then(|v| v.downcast_mut::<NamedView<FormView>>())
.map(NamedView::<FormView>::get_mut)
.and_then(|v| v.get_value::<SelectView<Disk>, _>(0))
- .ok_or("failed to retrieve filesystem type")?;
+ .ok_or("failed to retrieve bootdisk")?;
options.disks = vec![disk];
}
--
2.41.0
More information about the pve-devel
mailing list