mcexec: fix printf format warning
Some old commit before -Werror was enabled got merged, blocking other builds. Quickly fix before anyone notices Change-Id: I5a034cef6f79e3e99b381bb1a5d97088e33a6718
This commit is contained in:
committed by
Dominique Martinet
parent
791e8c2114
commit
63d500515a
@ -1960,7 +1960,7 @@ static ssize_t find_libdir(char *libdir, size_t len)
|
||||
filep = fopen("/proc/self/maps", "r");
|
||||
if (!filep) {
|
||||
rc = -errno;
|
||||
fprintf(stderr, "could not open /proc/self/maps: %d\n", -rc);
|
||||
fprintf(stderr, "could not open /proc/self/maps: %zd\n", -rc);
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user