summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/bn/general/bn_unit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regress/lib/libcrypto/bn/general/bn_unit.c b/src/regress/lib/libcrypto/bn/general/bn_unit.c
index fefbded107..06df91751a 100644
--- a/src/regress/lib/libcrypto/bn/general/bn_unit.c
+++ b/src/regress/lib/libcrypto/bn/general/bn_unit.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_unit.c,v 1.1 2022/11/22 08:56:33 tb Exp $ */ 1/* $OpenBSD: bn_unit.c,v 1.2 2022/11/22 09:09:43 tb Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2022 Theo Buehler <tb@openbsd.org> 4 * Copyright (c) 2022 Theo Buehler <tb@openbsd.org>
@@ -54,8 +54,8 @@ test_bn_print_null_derefs(void)
54 err(1, "getrlimit"); 54 err(1, "getrlimit");
55 55
56 if ((rlimit.rlim_cur + 1023) / 1024 < datalimit) { 56 if ((rlimit.rlim_cur + 1023) / 1024 < datalimit) {
57 printf("%s: Insufficient data limit\n", __func__); 57 printf("%s: insufficient data limit. Need more than %zu KiB\n",
58 printf("Need more than %zu kB\n", datalimit); 58 __func__, datalimit);
59 printf("SKIPPED\n"); 59 printf("SKIPPED\n");
60 return 0; 60 return 0;
61 } 61 }