From: Bernhard Bauer Date: Mon, 24 May 2010 19:45:25 +0000 (-0700) Subject: Clean up comments a bit. X-Git-Tag: v3.0~76^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=577956c5b5abc6b6c4a25e33a43719079bc5d14d;p=thirdparty%2Fccache.git Clean up comments a bit. --- diff --git a/ccache.c b/ccache.c index 2150b8222..c4f49e400 100644 --- 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;