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

Commit 9b2bf2d5 authored by Chih-Hung Hsieh's avatar Chih-Hung Hsieh
Browse files

Fix print format error.

Bug: 112478836
Test: build with WITH_TIDY=1
Change-Id: I0b9239be7c73cceb0b525c091a9b3a25add31204
Exempt-From-Owner-Approval: fix broken build on mac
parent 4d770d75
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 {