bmc: move transports vector into handler object

Move the transport vector to the firmware handler object.

Signed-off-by: Patrick Venture <venture@google.com>
Change-Id: Ic64b56b95ec52d4bbeb7e12ac26d0cc238363e42
diff --git a/bmc/main.cpp b/bmc/main.cpp
index f284d1c..ee15bba 100644
--- a/bmc/main.cpp
+++ b/bmc/main.cpp
@@ -132,8 +132,8 @@
     }
 
     auto handler = ipmi_flash::FirmwareBlobHandler::CreateFirmwareBlobHandler(
-        std::move(supportedFirmware), ipmi_flash::supportedTransports,
-        std::move(actionPacks));
+        std::move(supportedFirmware),
+        std::move(ipmi_flash::supportedTransports), std::move(actionPacks));
 
     if (!handler)
     {