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

Commit 99e23088 authored by Michael Wright's avatar Michael Wright Committed by Android Git Automerger
Browse files

am 150e0e87: Merge "fix return value scale of notifyANR()"

* commit '150e0e87':
  fix return value scale of notifyANR()
parents 895f3c27 150e0e87
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -148,7 +148,7 @@ final class InputMonitor implements InputManagerService.WindowManagerCallbacks {
                if (timeout >= 0) {
                    // The activity manager declined to abort dispatching.
                    // Wait a bit longer and timeout again later.
                    return timeout;
                    return timeout * 1000000L; // nanoseconds
                }
            } catch (RemoteException ex) {
            }