commit | 3760b83f3fb35514c49773eff5ce10ef4488157c | [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 | a04e96a98d10973af8b6dd483f04dc7ff1a9424f [diff] | |
parent | 0f6c08134d684183ab7c2b05a6b2f7e04e09619c [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;