]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Fix typos
authorJoel Rosdahl <joel@rosdahl.net>
Sun, 21 Jun 2020 18:47:44 +0000 (20:47 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Mon, 22 Jun 2020 13:13:37 +0000 (15:13 +0200)
src/compopt.c
unittest/test_argument_processing.c

index 11dec6b2320a40991bda82b1c47d107c95424e29..f59def96dd3802fc883d58eefa265459b9b99fc1 100644 (file)
@@ -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 {
index 665423f13474c50efac7fa9738c7ce8e2c67e984..38b7664297fad8997702e5339a31fd3b2ee6eac5 100644 (file)
@@ -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");