commit | 370d2e02e007d495fc0bba6d4a593350846c08a8 | [log] [tgz] |
---|---|---|
author | Yi Kong <yikong@google.com> | Wed Jan 03 19:49:08 2018 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Jan 03 19:49:08 2018 +0000 |
tree | 1f1d2bea5316942c21f27bec7c6cfdc1fada4133 | |
parent | 93d344d98cd02d66c3aac8067718be828ea283f9 [diff] | |
parent | 21c515ad1c7cadd4e768d8a14679eaf48ae4f184 [diff] |
Merge "Use correct format specifier"
diff --git a/trusty/storage/proxy/storage.c b/trusty/storage/proxy/storage.c index c61e89d..5b83e21 100644 --- a/trusty/storage/proxy/storage.c +++ b/trusty/storage/proxy/storage.c
@@ -379,7 +379,7 @@ } 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;