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

Commit ca794306 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "adb: Avoid extra string construction" into rvc-dev am: 386e91d2

Change-Id: I876983c946ecaee8b0443b9c5acdca66321d22ad
parents b80b857b 386e91d2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -617,7 +617,7 @@ class SyncConnection {
        }

        std::string path_and_mode = android::base::StringPrintf("%s,%d", path.c_str(), mode);
        if (!SendRequest(ID_SEND_V1, path_and_mode.c_str())) {
        if (!SendRequest(ID_SEND_V1, path_and_mode)) {
            Error("failed to send ID_SEND_V1 message '%s': %s", path_and_mode.c_str(),
                  strerror(errno));
            return false;