am a7a045a5: am 8c2c089a: am 291ce5b8: Merge "Fs_mgr: Fix format code"
* commit 'a7a045a58605f18a7c1779061b5040c6c1bbc3e2': Fs_mgr: Fix format code
This commit is contained in:
commit
4234f6742a
|
@ -431,7 +431,7 @@ static int check_verity_restart(const char *fname)
|
|||
}
|
||||
|
||||
if (lseek(fd, s.st_size - size, SEEK_SET) == -1) {
|
||||
ERROR("Failed to lseek %zu %s (%s)\n", s.st_size - size, fname,
|
||||
ERROR("Failed to lseek %jd %s (%s)\n", (intmax_t)(s.st_size - size), fname,
|
||||
strerror(errno));
|
||||
goto out;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue