]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Clean up comments a bit.
authorBernhard Bauer <bauerb@google.com>
Mon, 24 May 2010 19:45:25 +0000 (12:45 -0700)
committerBernhard Bauer <bauerb@google.com>
Mon, 24 May 2010 19:45:25 +0000 (12:45 -0700)
ccache.c

index 2150b822201e419b13631352bdb2eaa5ac9f90b3..c4f49e400ad899fb5367caaaf633248ae5ef13aa 100644 (file)
--- a/ccache.c
+++ b/ccache.c
@@ -178,9 +178,7 @@ static int nlevels = 2;
  */
 static int compile_preprocessed_source_code;
 
-/* a list of supported file extensions, and the equivalent
-   language
-*/
+/* a list of supported file extensions, and the equivalent language. */
 static const struct {
        const char *extension;
        const char *language;
@@ -204,9 +202,10 @@ static const struct {
        {"C++", "c++"},
        {NULL, NULL}};
 
-/* A list of languages and the equivalent language
-   after it has been preprocessed.
-*/
+/*
+ * A list of languages and the equivalent language
+ * after it has been preprocessed.
+ */
 static const struct {
   const char *language;
   const char *preprocessed_language;