Fix --strict-warnings build
authorPatrick Steuer <patrick.steuer@de.ibm.com>
Sat, 2 Nov 2019 13:50:28 +0000 (14:50 +0100)
committerPatrick Steuer <patrick.steuer@de.ibm.com>
Sun, 3 Nov 2019 15:38:56 +0000 (16:38 +0100)
commite774adb593e7bf9057775d85ecc7c24e9bacee12
tree2bd6048fa4b40112e6257d598cba01d3343f5e33
parent6f93f06135cbbd36c3fe98d63717e8303a5d559b
Fix --strict-warnings build

The %zd format corresponds to ssize_t which is used for
function to either return a valid size or a negative value
to indicate an error. Since size_t is in [-1,SSIZE_MAX] it
is not a portable way to represent a pointer diff. For
the %td format which corresponds to ptrdiff_t is C11,
we chose to cast to long instead as it is already done
in other places.

Signed-off-by: Patrick Steuer <patrick.steuer@de.ibm.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10335)
crypto/x509/pcy_tree.c