summaryrefslogtreecommitdiffstats
path: root/apps/enc.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2017-03-29 23:23:56 +0200
committerAndy Polyakov <appro@openssl.org>2017-03-30 19:34:18 +0200
commit7d672984f4dc6a87cb0c7d99279c6175fcdc3ad0 (patch)
treee633b0c1c932caff44afe776cf9d1d2b13e0aeb9 /apps/enc.c
parent74d9519a68ee484db584aebc6ab6b2cb4bf98b2a (diff)
apps/*.c: switch to platform-neutral format modifiers in BIO_print calls.
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3083)
Diffstat (limited to 'apps/enc.c')
-rw-r--r--apps/enc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/enc.c b/apps/enc.c
index 30c3c6329e..a1b2b3cac8 100644
--- a/apps/enc.c
+++ b/apps/enc.c
@@ -548,8 +548,8 @@ int enc_main(int argc, char **argv)
ret = 0;
if (verbose) {
- BIO_printf(bio_err, "bytes read :%8"PRIu64"\n", BIO_number_read(in));
- BIO_printf(bio_err, "bytes written:%8"PRIu64"\n", BIO_number_written(out));
+ BIO_printf(bio_err, "bytes read :%8ju\n", BIO_number_read(in));
+ BIO_printf(bio_err, "bytes written:%8ju\n", BIO_number_written(out));
}
end:
ERR_print_errors(bio_err);