fastboot: fix network connected device status

Bug: 303236495
Change-Id: Iceac3509531af1af65b455b1a3d5f5ab9029fda6
Signed-off-by: Dmitrii Merkurev <dimorinny@google.com>
This commit is contained in:
Dmitrii Merkurev 2023-12-09 01:55:20 +00:00
parent e9c24760d3
commit e20438f83b

View file

@ -402,7 +402,7 @@ static std::unique_ptr<Transport> NetworkDeviceConnected(bool print = false) {
transport = open_device(device.c_str(), false, false);
if (print) {
PrintDevice(device.c_str(), transport ? "offline" : "fastboot");
PrintDevice(device.c_str(), transport ? "fastboot" : "offline");
}
if (transport) {