Usb.cpp: Fix typos when unable to disable USB data

If Usb.cpp cannot write a zero value to the USB_DATA_PATH file, display
the message of "Not able to turn off usb connection notification".

Test: refactoring CL. Existing tests still pass.
Bug: 301016122
Change-Id: I6ce626ed37c245dc1c23f25aff7e24befe9b7fe8
This commit is contained in:
Kuen-Han Tsai
2023-09-19 18:58:45 +08:00
parent e86bdd7e97
commit 8b09c31e5f

View File

@@ -93,7 +93,7 @@ ScopedAStatus Usb::enableUsbData(const string& in_portName, bool in_enable,
}
if (!WriteStringToFile("0", USB_DATA_PATH)) {
ALOGE("Not able to turn on usb connection notification");
ALOGE("Not able to turn off usb connection notification");
result = false;
}
}