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

Commit e318a785 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix print format error."

parents 4d770d75 9b2bf2d5
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 {