From 3a9df36b9a63b8580089cbf03ec32587891fad3d Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Sat, 19 Dec 2015 17:16:56 +0100 Subject: [PATCH] Tweak code style --- ccache.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; -- 2.47.2