]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Correct language for preprocessed c (there's a typo in the gcc manpage).
authorBernhard Bauer <bauerb@google.com>
Mon, 24 May 2010 21:27:26 +0000 (14:27 -0700)
committerBernhard Bauer <bauerb@google.com>
Mon, 24 May 2010 21:27:26 +0000 (14:27 -0700)
ccache.c

index c4f49e400ad899fb5367caaaf633248ae5ef13aa..b45449c2af97121e05997481549553ebd0d6146e 100644 (file)
--- a/ccache.c
+++ b/ccache.c
@@ -183,7 +183,7 @@ static const struct {
        const char *extension;
        const char *language;
 } extensions[] = {
-       {"i", "c-cpp-output"},
+       {"i", "cpp-output"},
        {"ii", "c++-cpp-output"},
        {"mi", "objective-c-cpp-output"},
        {"mii", "objective-c++-cpp-output"},
@@ -210,7 +210,7 @@ static const struct {
   const char *language;
   const char *preprocessed_language;
 } preprocessed_languages[] = {
-  {"c", "c-cpp-output"},
+  {"c", "cpp-output"},
   {"c++", "c++-cpp-output"},
   {"objective-c", "objective-c-cpp-output"},
   {"objective-c++", "objective-c++-cpp-output"},