Fix an accidental PRId64 to PRIx64.
Change-Id: Ic5313289d826bac74c3466b33f1f167a8f0955ad
This commit is contained in:
parent
cb33f5741c
commit
231bdba012
1 changed files with 1 additions and 1 deletions
|
@ -1953,7 +1953,7 @@ static int flush_outstanding_data(struct encryptGroupsData* data)
|
|||
return 0;
|
||||
}
|
||||
|
||||
SLOGV("Copying %d blocks at offset %" PRId64, data->count, data->offset);
|
||||
SLOGV("Copying %d blocks at offset %" PRIx64, data->count, data->offset);
|
||||
|
||||
if (pread64(data->realfd, data->buffer,
|
||||
info.block_size * data->count, data->offset)
|
||||
|
|
Loading…
Reference in a new issue