From 5a8f0e304eb34f5bdaa9286eca2c19637b4b9ea0 Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Sun, 26 Jul 2015 16:38:35 +0200 Subject: [PATCH] Minor tweaking to comments --- args.c | 6 +++--- ccache.c | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) 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")) { -- 2.47.2