diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-05-29 17:23:06 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-05-29 17:23:06 +0000 |
commit | 81950f8bd88c891c2556d0f8c08dc903b5f221a8 (patch) | |
tree | d13749c7e890a62f6e93046b28a26c2d68a3f666 /regress | |
parent | 5a55f36fbaa2006f3ece1bca47bb3ee75b3cfe08 (diff) |
asn1object: zap trailing whitespace
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libcrypto/asn1/asn1object.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/lib/libcrypto/asn1/asn1object.c b/regress/lib/libcrypto/asn1/asn1object.c index e2008777d91..242881af050 100644 --- a/regress/lib/libcrypto/asn1/asn1object.c +++ b/regress/lib/libcrypto/asn1/asn1object.c @@ -1,4 +1,4 @@ -/* $OpenBSD: asn1object.c,v 1.13 2024/05/29 16:49:36 tb Exp $ */ +/* $OpenBSD: asn1object.c,v 1.14 2024/05/29 17:23:05 tb Exp $ */ /* * Copyright (c) 2017, 2021, 2022 Joel Sing <jsing@openbsd.org> * @@ -349,7 +349,7 @@ asn1_object_bad_content_test(void) int failed = 1; p = asn1_object_bad_content1; - len = sizeof(asn1_object_bad_content1); + len = sizeof(asn1_object_bad_content1); if ((aobj = c2i_ASN1_OBJECT(NULL, &p, len)) != NULL) { fprintf(stderr, "FAIL: c2i_ASN1_OBJECT() succeeded with bad " "content 1\n"); @@ -357,7 +357,7 @@ asn1_object_bad_content_test(void) } p = asn1_object_bad_content2; - len = sizeof(asn1_object_bad_content2); + len = sizeof(asn1_object_bad_content2); if ((aobj = c2i_ASN1_OBJECT(NULL, &p, len)) != NULL) { fprintf(stderr, "FAIL: c2i_ASN1_OBJECT() succeeded with bad " "content 2\n"); |