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

Commit b1de951a authored by Svetoslav Ganov's avatar Svetoslav Ganov Committed by Android Git Automerger
Browse files

am da59cd60: Merge "Wrong index while dumping the print sub-system\'s state." into klp-dev

* commit 'da59cd60':
  Wrong index while dumping the print sub-system's state.
parents 41dd5233 da59cd60
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -366,7 +366,7 @@ public final class PrintManagerService extends IPrintManager.Stub {
                pw.println("PRINT MANAGER STATE (dumpsys print)");
                final int userStateCount = mUserStates.size();
                for (int i = 0; i < userStateCount; i++) {
                    UserState userState = mUserStates.get(i);
                    UserState userState = mUserStates.valueAt(i);
                    userState.dump(fd, pw, "");
                    pw.println();
                }