aboutsummaryrefslogtreecommitdiff
path: root/test/sanitytest.c
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2017-11-11 19:03:10 -0500
committerRich Salz <rsalz@openssl.org>2017-11-11 19:03:10 -0500
commit46f4e1bec51dc96fa275c168752aa34359d9ee51 (patch)
treec80b737d1fff479fd88f6c41175187ebad868299 /test/sanitytest.c
parentb4d0fa49d9d1a43792e58b0c8066bb23b9e53ef4 (diff)
downloadopenssl-46f4e1bec51dc96fa275c168752aa34359d9ee51.zip
openssl-46f4e1bec51dc96fa275c168752aa34359d9ee51.tar.gz
openssl-46f4e1bec51dc96fa275c168752aa34359d9ee51.tar.bz2
Many spelling fixes/typo's corrected.
Around 138 distinct errors found and fixed; thanks! Reviewed-by: Kurt Roeckx <kurt@roeckx.be> Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3459)
Diffstat (limited to 'test/sanitytest.c')
-rw-r--r--test/sanitytest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sanitytest.c b/test/sanitytest.c
index c1c51a2..e9afb44 100644
--- a/test/sanitytest.c
+++ b/test/sanitytest.c
@@ -66,7 +66,7 @@ static int test_sanity_sign(void)
return 1;
}
-static int test_sanity_unsigned_convertion(void)
+static int test_sanity_unsigned_conversion(void)
{
/* Check that unsigned-to-signed conversions preserve bit patterns */
if (!TEST_int_eq((int)((unsigned int)INT_MAX + 1), INT_MIN)
@@ -91,7 +91,7 @@ int setup_tests(void)
ADD_TEST(test_sanity_enum_size);
ADD_TEST(test_sanity_twos_complement);
ADD_TEST(test_sanity_sign);
- ADD_TEST(test_sanity_unsigned_convertion);
+ ADD_TEST(test_sanity_unsigned_conversion);
ADD_TEST(test_sanity_range);
return 1;
}