Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@google.com>2016-05-02 19:57:01 +0300
committerDavid Benjamin <davidben@google.com>2016-05-02 22:46:25 +0300
commit7acd6bc07a25e85d784106fcdfda52809c09699f (patch)
treeaed25f7f7704d992416a3d7a97e18e09f584b831 /crypto/modes
parent8861daa5a9f3ed85500aebcde10278f604e673ac (diff)
Start assuming MSVC 2015.
BUG=43 Change-Id: I46ad1ca62b8921a03fae51f5d7bbe1c68fc0b170 Reviewed-on: https://boringssl-review.googlesource.com/7821 Reviewed-by: Steven Valdez <svaldez@google.com> Reviewed-by: David Benjamin <davidben@google.com>
Diffstat (limited to 'crypto/modes')
-rw-r--r--crypto/modes/gcm_test.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/crypto/modes/gcm_test.c b/crypto/modes/gcm_test.c
index 56639e6e..19c295b5 100644
--- a/crypto/modes/gcm_test.c
+++ b/crypto/modes/gcm_test.c
@@ -282,9 +282,7 @@ static int decode_hex(uint8_t **out, size_t *out_len, const char *in,
uint8_t v, v2;
if (!from_hex(&v, in[i]) ||
!from_hex(&v2, in[i+1])) {
- fprintf(stderr,
- "%u: invalid hex digit in %s around offset %" OPENSSL_PR_SIZE_T
- ".\n",
+ fprintf(stderr, "%u: invalid hex digit in %s around offset %zu.\n",
test_num, description, i);
goto err;
}