From fcff8e9ceed6459407624a7753a0a25575407f76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Wed, 24 Feb 2021 23:55:18 +0100 Subject: [PATCH] test: fix two error messages (#1034) --- test/default/core_ristretto255.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/default/core_ristretto255.c b/test/default/core_ristretto255.c index 2367f8a2..0d247c46 100644 --- a/test/default/core_ristretto255.c +++ b/test/default/core_ristretto255.c @@ -172,7 +172,7 @@ tv3(void) printf("addition failed"); } if (crypto_core_ristretto255_sub(s2, s2, s_) != 0) { - printf("substraction failed"); + printf("subtraction failed"); } if (crypto_core_ristretto255_is_valid_point(s2) == 0) { printf("invalid point"); @@ -181,7 +181,7 @@ tv3(void) printf("s2 + s - s_ != s\n"); } if (crypto_core_ristretto255_sub(s2, s2, s) != 0) { - printf("substraction failed"); + printf("subtraction failed"); } if (crypto_core_ristretto255_is_valid_point(s2) == -1) { printf("s + s' - s - s' != 0");