From: Joel Rosdahl Date: Thu, 21 Mar 2019 19:49:15 +0000 (+0100) Subject: Tweak code style X-Git-Tag: v3.7~61 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78e5b203f3fadf6756cd270b2191edbe8a68f0ca;p=thirdparty%2Fccache.git Tweak code style --- diff --git a/src/ccache.c b/src/ccache.c index 48c655b58..c3597de44 100644 --- a/src/ccache.c +++ b/src/ccache.c @@ -3045,11 +3045,11 @@ cc_process_args(struct args *args, struct args **preprocessor_args, // If an argument isn't a plain file then assume its an option, not an // input file. This allows us to cope better with unusual compiler options. // - // NOTE that "/dev/null" is an exception that is sometimes used as an input + // Note that "/dev/null" is an exception that is sometimes used as an input // file when code is testing compiler flags. struct stat st; - if (!str_eq(argv[i], "/dev/null") && -+ (stat(argv[i], &st) != 0 || !S_ISREG(st.st_mode))) { + if (!str_eq(argv[i], "/dev/null") + && (stat(argv[i], &st) != 0 || !S_ISREG(st.st_mode))) { cc_log("%s is not a regular file, not considering as input file", argv[i]); args_add(stripped_args, argv[i]);