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

Commit d3f64394 authored by Adrian Roos's avatar Adrian Roos
Browse files

AppErrors: Fix bad flags printing in dropbox crash reports

Fixes a bug where flags were written as a signed hex value.

Change-Id: Icf65f745f6d02d0e0d4f85c108f170951310f2a7
Fixes: 30147712
parent a8b4e732
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -13591,7 +13591,7 @@ public final class ActivityManagerService extends ActivityManagerNative
            sb.append("Process: ").append(processName).append("\n");
            int flags = process.info.flags;
            IPackageManager pm = AppGlobals.getPackageManager();
            sb.append("Flags: 0x").append(Integer.toString(flags, 16)).append("\n");
            sb.append("Flags: 0x").append(Integer.toHexString(flags)).append("\n");
            for (int ip=0; ip<process.pkgList.size(); ip++) {
                String pkg = process.pkgList.keyAt(ip);
                sb.append("Package: ").append(pkg);