chiark / gitweb /
math/ec-test.c: Add in missing space in test failure reports.
authorMark Wooding <mdw@distorted.org.uk>
Mon, 12 Sep 2016 21:32:37 +0000 (22:32 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sun, 2 Oct 2016 12:14:05 +0000 (13:14 +0100)
math/ec-test.c

index c75de61326598f1b7fbaa495b68124863dfb6f8b..d9cda6ff6217e384e837e33f5bcab0c0b9565ec5 100644 (file)
@@ -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);              \