From 5b0f12c4b897fedf62eefea179318fbce9e74e9d Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Sun, 21 Jun 2020 20:47:44 +0200 Subject: [PATCH] Fix typos --- src/compopt.c | 2 +- unittest/test_argument_processing.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compopt.c b/src/compopt.c index 11dec6b23..f59def96d 100644 --- a/src/compopt.c +++ b/src/compopt.c @@ -37,7 +37,7 @@ // run_second_cpp is false. #define AFFECTS_CPP (1 << 5) -// The option only affects compilation; not passed to the preprocesor. +// The option only affects compilation; not passed to the preprocessor. #define AFFECTS_COMP (1 << 6) struct compopt { diff --git a/unittest/test_argument_processing.c b/unittest/test_argument_processing.c index 665423f13..38b766429 100644 --- a/unittest/test_argument_processing.c +++ b/unittest/test_argument_processing.c @@ -463,7 +463,7 @@ TEST(debug_flag_order_with_known_option_last) args_free(orig); } -TEST(options_not_to_be_passed_to_the_preprocesor) +TEST(options_not_to_be_passed_to_the_preprocessor) { struct args *orig = args_init_from_string( "cc -Wa,foo foo.c -g -c -DX -Werror -Xlinker fie -Xlinker,fum -Wno-error"); -- 2.47.2