From: Joel Rosdahl Date: Sun, 26 Jul 2015 14:38:35 +0000 (+0200) Subject: Minor tweaking to comments X-Git-Tag: v3.2.3~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5a8f0e304eb34f5bdaa9286eca2c19637b4b9ea0;p=thirdparty%2Fccache.git Minor tweaking to comments --- diff --git a/args.c b/args.c index 2b17779a1..91fc47e7b 100644 --- a/args.c +++ b/args.c @@ -58,9 +58,9 @@ args_init_from_gcc_atfile(const char *filename) char *pos, *argtext, *argpos, *argbuf; char quoting; - /* Used to track quoting state; if \0, we're not - * inside quotes. Otherwise stores the quoting character - * that started it, for matching the end quote */ + /* Used to track quoting state; if \0, we are not inside quotes. Otherwise + * stores the quoting character that started it, for matching the end + * quote */ quoting = '\0'; if (!(argtext = read_text_file(filename, 0))) diff --git a/ccache.c b/ccache.c index c47e765e4..914dbc0a0 100644 --- a/ccache.c +++ b/ccache.c @@ -624,8 +624,9 @@ process_preprocessed_file(struct mdfour *hash, const char *path) end = data + size; p = data; q = data; - while (q < end - 7) { /* There must be at least 7 characters (# 1 "x") left - to potentially find an include file path. */ + /* There must be at least 7 characters (# 1 "x") left to potentially find an + * include file path. */ + while (q < end - 7) { /* * Check if we look at a line containing the file name of an included file. * At least the following formats exist (where N is a positive integer): @@ -1981,9 +1982,8 @@ cc_process_args(struct args *args, struct args **preprocessor_args, continue; } - /* debugging is handled specially, so that we know if we - can strip line number info - */ + /* Debugging is handled specially, so that we know if we can strip line + * number info. */ if (str_startswith(argv[i], "-g")) { args_add(stripped_args, argv[i]); if (conf->unify && !str_eq(argv[i], "-g0")) {