opponent.c: forgot missing printf("\n") from _cleanup. reason for test failures.
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;
}