summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/regress/lib/libcrypto/asn1/asn1evp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/regress/lib/libcrypto/asn1/asn1evp.c b/src/regress/lib/libcrypto/asn1/asn1evp.c
index 64a3becc70..7e290d5db8 100644
--- a/src/regress/lib/libcrypto/asn1/asn1evp.c
+++ b/src/regress/lib/libcrypto/asn1/asn1evp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: asn1evp.c,v 1.3 2018/11/08 21:37:21 jsing Exp $ */ 1/* $OpenBSD: asn1evp.c,v 1.4 2021/04/06 16:30:27 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2017 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2017 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -36,12 +36,12 @@ unsigned char test_octetstring[] = {
36static void 36static void
37hexdump(const unsigned char *buf, size_t len) 37hexdump(const unsigned char *buf, size_t len)
38{ 38{
39 size_t i; 39 size_t i;
40 40
41 for (i = 1; i <= len; i++) 41 for (i = 1; i <= len; i++)
42 fprintf(stderr, " 0x%02hhx,%s", buf[i - 1], i % 8 ? "" : "\n"); 42 fprintf(stderr, " 0x%02hhx,%s", buf[i - 1], i % 8 ? "" : "\n");
43 43
44 fprintf(stderr, "\n"); 44 fprintf(stderr, "\n");
45} 45}
46 46
47static int 47static int