summaryrefslogtreecommitdiffstats
path: root/trusty
diff options
context:
space:
mode:
authorYi Kong <yikong@google.com>2018-01-03 20:45:03 +0000
committerandroid-build-merger <android-build-merger@google.com>2018-01-03 20:45:03 +0000
commit04e5fde33d2648261a242d0d271f663b33cd736b (patch)
tree46e6d321c037c6387492a5e586cbf51f70931bef /trusty
parent02fbb27e73c8e2583ffdadb5d2a7dede11f04ddf (diff)
parent53d69290a76319be8ea86b495e02455c30fc85a4 (diff)
downloadsystem_core-04e5fde33d2648261a242d0d271f663b33cd736b.tar.gz
system_core-04e5fde33d2648261a242d0d271f663b33cd736b.tar.bz2
system_core-04e5fde33d2648261a242d0d271f663b33cd736b.zip
Merge "Use correct format specifier" am: 370d2e02e0 am: ef44dd2325
am: 53d69290a7 Change-Id: I158f99bdba598d64bc676be4ea4e1c38e6cbcce4
Diffstat (limited to 'trusty')
-rw-r--r--trusty/storage/proxy/storage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/trusty/storage/proxy/storage.c b/trusty/storage/proxy/storage.c
index c61e89d78..5b83e2141 100644
--- a/trusty/storage/proxy/storage.c
+++ b/trusty/storage/proxy/storage.c
@@ -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;