From: Mark Wooding Date: Mon, 12 Sep 2016 21:32:37 +0000 (+0100) Subject: math/ec-test.c: Add in missing space in test failure reports. X-Git-Tag: 2.3.0~35 X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/commitdiff_plain/912c70abe824cf6a99fc3db98f3550f570e6d83c math/ec-test.c: Add in missing space in test failure reports. --- 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); \