aboutsummaryrefslogtreecommitdiffstats
path: root/test/testutil/format_output.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/testutil/format_output.c')
-rw-r--r--test/testutil/format_output.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/testutil/format_output.c b/test/testutil/format_output.c
index b2207503f9..ead03841d5 100644
--- a/test/testutil/format_output.c
+++ b/test/testutil/format_output.c
@@ -206,6 +206,7 @@ static int convert_bn_memory(const unsigned char *in, size_t bytes,
{
int n = bytes * 2, i;
char *p = out, *q = NULL;
+ const char *r;
if (bn != NULL && !BN_is_zero(bn)) {
hex_convert_memory(in, bytes, out, BN_OUTPUT_SIZE);
@@ -248,10 +249,10 @@ static int convert_bn_memory(const unsigned char *in, size_t bytes,
}
*p = '\0';
if (bn == NULL)
- q = "NULL";
+ r = "NULL";
else
- q = BN_is_negative(bn) ? "-0" : "0";
- strcpy(p - strlen(q), q);
+ r = BN_is_negative(bn) ? "-0" : "0";
+ strcpy(p - strlen(r), r);
return 0;
}