From: Joel Rosdahl Date: Sun, 21 Jun 2020 18:47:44 +0000 (+0200) Subject: Fix typos X-Git-Tag: v3.7.10~3 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=5b0f12c4b897fedf62eefea179318fbce9e74e9d;p=thirdparty%2Fccache.git Fix typos --- 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");