Fix adb server vs adb daemon confusion

The adb daemon runs on the device, the adb server runs as a background
process on the computer.
This commit is contained in:
Romain Vimont
2023-06-05 19:45:20 +02:00
parent b8d43866d2
commit b16d4d1835
2 changed files with 2 additions and 2 deletions

View File

@@ -805,7 +805,7 @@ run_server(void *data) {
// is parsed, so it is not output)
bool ok = sc_adb_start_server(&server->intr, 0);
if (!ok) {
LOGE("Could not start adb daemon");
LOGE("Could not start adb server");
goto error_connection_failed;
}