Merge "Use correct format specifier" am: 370d2e02e0 am: ef44dd2325

am: 53d69290a7

Change-Id: I158f99bdba598d64bc676be4ea4e1c38e6cbcce4
This commit is contained in:
Yi Kong 2018-01-03 20:45:03 +00:00 committed by android-build-merger
commit 04e5fde33d

View file

@ -379,7 +379,7 @@ int storage_file_read(struct storage_msg *msg,
}
if (req->size > MAX_READ_SIZE) {
ALOGW("%s: request is too large (%zd > %zd) - refusing\n",
ALOGW("%s: request is too large (%u > %d) - refusing\n",
__func__, req->size, MAX_READ_SIZE);
msg->result = STORAGE_ERR_NOT_VALID;
goto err_response;