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

Commit e9c24760 authored by Steven Moreland's avatar Steven Moreland Committed by Gerrit Code Review
Browse files

Merge "Looper: Fixed compile error when enabling DEBUG_CALLBACKS" into main

parents 37e7498f 862f049d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -203,6 +203,7 @@ cc_library {
    defaults: ["libutils_impl_defaults"],

    cflags: [
        "-DDEBUG_CALLBACKS=1",
        "-DDEBUG_POLL_AND_WAKE=1",
        "-DDEBUG_REFS=1",
        "-DDEBUG_TOKENIZER=1",
+1 −1
Original line number Diff line number Diff line
@@ -534,7 +534,7 @@ int Looper::removeFd(int fd) {

int Looper::removeSequenceNumberLocked(SequenceNumber seq) {
#if DEBUG_CALLBACKS
    ALOGD("%p ~ removeFd - fd=%d, seq=%u", this, fd, seq);
    ALOGD("%p ~ removeFd - seq=%" PRIu64, this, seq);
#endif

    const auto& request_it = mRequests.find(seq);