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

@@ -83,7 +83,7 @@ scrcpy_otg(struct scrcpy_options *options) {
#ifdef _WIN32
// On Windows, only one process could open a USB device
// <https://github.com/Genymobile/scrcpy/issues/2773>
LOGI("Killing adb daemon (if any)...");
LOGI("Killing adb server (if any)...");
unsigned flags = SC_ADB_NO_STDOUT | SC_ADB_NO_STDERR | SC_ADB_NO_LOGERR;
// uninterruptible (intr == NULL), but in practice it's very quick
sc_adb_kill_server(NULL, flags);