commit | 3365ec8a073443e09d12c0c701b33c0c844f6362 | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Wed Aug 17 17:45:18 2016 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Thu Aug 18 17:32:39 2016 +0000 |
tree | a985b1147886c978d6806ee94f3cd34a11297830 | |
parent | 867da9714222e5d6babdad930d7238486e4698ca [diff] |
Fix warnings in printf format A number of arguments to printf were 'size_t', which is the same size as 'int' only on 32-bit architectures. Replace all %d format strings with %zd where size_t is the type passed. Change-Id: Ida863312d692f47ca8240f32b75b8c55a8accc19 Signed-off-by: Patrick Williams <patrick@stwcx.xyz>