RT3984: Fix clang compiler warning on Mac OS X where %ld is used for uint64_t.
authorAdam Eijdenberg <adam.eijdenberg@gmail.com>
Wed, 5 Aug 2015 02:08:22 +0000 (19:08 -0700)
committerEmilia Kasper <emilia@openssl.org>
Tue, 1 Sep 2015 18:18:46 +0000 (20:18 +0200)
clang suggests %llu instead, but it isn't clear that is portable on
all platforms.

C99 and above define a handy macro for us, so we try to use that
definition and fall back to current definition if needed (though we
switch to 'u' for unsigned).

Reviewed-by: Matt Caswell <matt@openssl.org>

No differences found