From: Joel Rosdahl Date: Sat, 19 Dec 2015 16:16:56 +0000 (+0100) Subject: Tweak code style X-Git-Tag: v3.3~139 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a9df36b9a63b8580089cbf03ec32587891fad3d;p=thirdparty%2Fccache.git Tweak code style --- diff --git a/ccache.c b/ccache.c index 26b911fc8..810b2940a 100644 --- a/ccache.c +++ b/ccache.c @@ -2044,11 +2044,12 @@ cc_process_args(struct args *args, struct args **preprocessor_args, } } - /* Multiple -arch options are too hard. */ + /* Different -arch options are too hard. */ if (str_eq(argv[i], "-arch")) { if (found_arch) { if (!str_eq(found_arch, argv[i+1])) { - cc_log("More than one different -arch compiler options is unsupported. Found %s and %s.", found_arch, argv[i+1]); + cc_log("Different -arch compiler options are unsupported; found %s" + " and %s", found_arch, argv[i+1]); stats_update(STATS_UNSUPPORTED); result = false; goto out;