hdd_menu: fix device name on fdisk invocation

Origin commit data
------------------
Commit: d1836f497c
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2015-02-22 (Sun, 22 Feb 2015)
This commit is contained in:
Stefan Seyfried
2015-02-22 18:47:29 +01:00
parent 136d3e153e
commit 48d97e8727

View File

@@ -1048,7 +1048,7 @@ int CHDDMenuHandler::formatDevice(std::string dev)
snprintf(cmd, sizeof(cmd), "%s -f -uM %s", sfdisk.c_str(), devname.c_str());
strcpy(cmd2, "0,\n;\n;\n;\ny\n");
} else if (! fdisk.empty()) {
snprintf(cmd, sizeof(cmd), "%s -u /dev/%s", fdisk.c_str(), devname.c_str());
snprintf(cmd, sizeof(cmd), "%s -u %s", fdisk.c_str(), devname.c_str());
strcpy(cmd2, "o\nn\np\n1\n2048\n\nw\n");
} else {
/* cannot do anything */