Fix fastboot to not add '-' before suffix
Change-Id: I9351b385412151498f47ab46a2620f21b9ac38b8
diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp
index 42e47a6..e456391 100644
--- a/fastboot/fastboot.cpp
+++ b/fastboot/fastboot.cpp
@@ -751,9 +751,9 @@
if (!fb_getvar(usb, "current-slot", ¤t_slot)) {
die("Failed to identify current slot.\n");
}
- func(std::string(part) + '-' + current_slot);
+ func(std::string(part) + current_slot);
} else {
- func(std::string(part) + '-' + slot);
+ func(std::string(part) + slot);
}
} else {
if (force_slot && slot && slot[0]) {