Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e95214c4 authored by Josh Gao's avatar Josh Gao Committed by android-build-merger
Browse files

Merge "Fix adb." am: 50d60652

am: ff6d1a96

Change-Id: I270efbd5555b7ef8088225f5ea8cdc6ea0cd343d
parents b71f6edf ff6d1a96
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -60,8 +60,8 @@ void adb_get_transport(TransportType* type, const char** serial) {
}

void adb_set_socket_spec(const char* socket_spec) {
    if (!__adb_server_socket_spec) {
        LOG(FATAL) << "attempted to reinitialize adb_server_socket_spec";
    if (__adb_server_socket_spec) {
        LOG(FATAL) << "attempted to reinitialize adb_server_socket_spec " << socket_spec << " (was " << __adb_server_socket_spec << ")";
    }
    __adb_server_socket_spec = socket_spec;
}