commit | f89c5ddd1aaf0e4a5b6fd0a1397c5a72f1cba388 | [log] [tgz] |
---|---|---|
author | Johan Hedberg <johan.hedberg@intel.com> | Wed Nov 22 17:29:40 2023 +0200 |
committer | Johan Hedberg <johan.hedberg@gmail.com> | Fri Nov 24 13:10:24 2023 +0200 |
tree | 76c22186167ba7b09beae6cf320424c946f8527d | |
parent | 3f9d24e4c01ba282a73d774c28639761118ec9c7 [diff] |
samples: chre: Fix format strings for size_t types The correct printf format specifier for size_t is %zu. Without this change the sample generates warnings like this: warning: format '%u' expects argument of type 'unsigned int', but argument 2 has type 'size_t' {aka 'long unsigned int'} [-Wformat=] Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>