From 912c70abe824cf6a99fc3db98f3550f570e6d83c Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Mon, 12 Sep 2016 22:32:37 +0100 Subject: [PATCH] math/ec-test.c: Add in missing space in test failure reports. --- math/ec-test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/math/ec-test.c b/math/ec-test.c index c75de613..d9cda6ff 100644 --- a/math/ec-test.c +++ b/math/ec-test.c @@ -232,7 +232,7 @@ static void ecdestroy(ec_curve *c) int ok = 1; \ ec_##op(e, &c, a); \ if (!EC_EQ(r, &c)) { \ - fprintf(stderr, #op "failed"); \ + fprintf(stderr, #op " failed"); \ fprintf(stderr, "\ncurve = "); type_ecurve.dump(v, stderr); \ fprintf(stderr, "\n a = "); ecdodump(a, stderr); \ fprintf(stderr, "\n r = "); ecdodump(r, stderr); \ @@ -256,7 +256,7 @@ static void ecdestroy(ec_curve *c) int ok = 1; \ ec_##op(e, &c, a, b); \ if (!EC_EQ(r, &c)) { \ - fprintf(stderr, #op "failed"); \ + fprintf(stderr, #op " failed"); \ fprintf(stderr, "\ncurve = "); type_ecurve.dump(v, stderr); \ fprintf(stderr, "\n a = "); ecdodump(a, stderr); \ fprintf(stderr, "\n b = "); ecdodump(b, stderr); \ -- 2.11.0