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

Commit 85ecdb8a authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "cmd: fix compile error in DEBUG" am: 6d24b1eb am: 9b3b0e04 am: a5933aa6

Change-Id: Ifc33972efe4f040e7be82b86d27aec48574ebeb8
parents d08f7b25 a5933aa6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -223,7 +223,8 @@ int cmdMain(const std::vector<std::string_view>& argv, TextOutput& outputLog, Te
    sp<MyResultReceiver> result = new MyResultReceiver();

#if DEBUG
    ALOGD("cmd: Invoking %s in=%d, out=%d, err=%d", cmd, in, out, err);
    ALOGD("cmd: Invoking %.*s in=%d, out=%d, err=%d",
          static_cast<int>(cmd.size()), cmd.data(), in, out, err);
#endif

    // TODO: block until a result is returned to MyResultReceiver.