Commit 12b41bbeb500d8b2067ab9f1733caf18f4f71cd9

Daniel Mendler 2019-03-04T01:42:05

opponent.c: forgot missing printf("\n") from _cleanup. reason for test failures.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/demo/opponent.c b/demo/opponent.c
index 046ced6..329ed3f 100644
--- a/demo/opponent.c
+++ b/demo/opponent.c
@@ -388,9 +388,11 @@ int mtest_opponent(void)
    }
 
    mp_clear_multi(&a, &b, &c, &d, &e, &f, NULL);
+   printf("\n");
    return 0;
 
  LBL_ERR:
    mp_clear_multi(&a, &b, &c, &d, &e, &f, NULL);
+   printf("\n");
    return EXIT_FAILURE;
 }