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

Commit a5933aa6 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

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

Change-Id: I8495c25b6b02c9d61f278ac2875668c86a42bf19
parents c7120a98 9b3b0e04
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.