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

Commit 487b6668 authored by Chih-Hung Hsieh's avatar Chih-Hung Hsieh Committed by android-build-merger
Browse files

Merge "Fix print format error." am: e318a785 am: 7279ee12 am: 7bf1314e

am: 90a9b22c

Change-Id: Ife083ddc8938f40e7d4ca45482d8fb0fc5ce45a4
parents a6f9c785 90a9b22c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -198,9 +198,9 @@ static int verify(const char* fileName, int alignment, bool verbose,
            const int alignTo = getAlignment(pageAlignSharedLibs, alignment, pEntry);
            if ((offset % alignTo) != 0) {
                if (verbose) {
                    printf("%8jd %s (BAD - %ld)\n",
                    printf("%8jd %s (BAD - %jd)\n",
                        (intmax_t) offset, pEntry->getFileName(),
                        offset % alignTo);
                        (intmax_t) (offset % alignTo));
                }
                foundBad = true;
            } else {