summaryrefslogtreecommitdiff
path: root/hscript/disk.cc
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2020-03-19 04:33:01 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2020-03-19 04:33:01 -0500
commit4bb29bd72adfaf985194618d3a66545d0154c373 (patch)
tree365082dd4cf9d84fe808d5c09c17dc32220d4697 /hscript/disk.cc
parentf04b3f589d7800653b9fb3ad08131f4edd2e2828 (diff)
downloadhorizon-4bb29bd72adfaf985194618d3a66545d0154c373.tar.gz
horizon-4bb29bd72adfaf985194618d3a66545d0154c373.tar.bz2
horizon-4bb29bd72adfaf985194618d3a66545d0154c373.tar.xz
horizon-4bb29bd72adfaf985194618d3a66545d0154c373.zip
hscript: Support creation of MBR disklabels
Diffstat (limited to 'hscript/disk.cc')
-rw-r--r--hscript/disk.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/hscript/disk.cc b/hscript/disk.cc
index a23c8f5..30884d6 100644
--- a/hscript/disk.cc
+++ b/hscript/disk.cc
@@ -210,7 +210,7 @@ bool DiskLabel::execute() const {
type_str = "apm";
break;
case MBR:
- type_str = "mbr";
+ type_str = "msdos";
break;
case GPT:
type_str = "gpt";