From c48cd9f6c0a08f44c2af65aec158d6dcb20facd4 Mon Sep 17 00:00:00 2001 From: Dmitrii Merkurev Date: Wed, 15 Feb 2023 15:34:58 +0000 Subject: [PATCH] fastboot: Follow fastboot pattern to show network-connected device status Bug: 269348113 Test: checked output Change-Id: Ie6c48d36bd67fcb060ad3f4a35185fd9cc59ff81 Signed-off-by: Dmitrii Merkurev --- fastboot/fastboot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp index c9cb228bb..518d4c9a3 100644 --- a/fastboot/fastboot.cpp +++ b/fastboot/fastboot.cpp @@ -428,7 +428,7 @@ static Transport* NetworkDeviceConnected(bool print = false) { transport = open_device(device.c_str(), false, false); if (print) { - PrintDevice(device.c_str(), transport == nullptr ? "offline" : "device"); + PrintDevice(device.c_str(), transport == nullptr ? "offline" : "fastboot"); } if (transport != nullptr) {