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

Commit f6d1778b authored by Siarhei Vishniakou's avatar Siarhei Vishniakou
Browse files

Print display id as integer

This is a typo likely due to copy-paste.

Bug: none
Test: presubmit
Change-Id: I5980bac9e6c3c1be59eb0163adb030b95b44a570
parent 338b474d
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -338,9 +338,8 @@ bool InputState::shouldCancelPreviousStream(const MotionEntry& motionEntry) cons
        // it's unlikely that those two streams would be consistent with each other. Therefore,
        // cancel the previous gesture if the display id changes.
        if (motionEntry.displayId != lastMemento.displayId) {
            LOG(INFO) << "Canceling stream: last displayId was "
                      << inputEventSourceToString(lastMemento.displayId) << " and new event is "
                      << motionEntry;
            LOG(INFO) << "Canceling stream: last displayId was " << lastMemento.displayId
                      << " and new event is " << motionEntry;
            return true;
        }