From: Bernhard Bauer Date: Mon, 24 May 2010 21:27:26 +0000 (-0700) Subject: Correct language for preprocessed c (there's a typo in the gcc manpage). X-Git-Tag: v3.0~76^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e21e09c6a4c1e83288f97b5c8f7dea1690b15257;p=thirdparty%2Fccache.git Correct language for preprocessed c (there's a typo in the gcc manpage). --- diff --git a/ccache.c b/ccache.c index c4f49e400..b45449c2a 100644 --- 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"},