From baeecfdb99c55da804d2532845a29975e5bae291 Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Sat, 8 Feb 2020 17:14:55 +0100 Subject: [PATCH] =?utf8?q?Use=20correct=20spelling=20of=20the=20verb=20?= =?utf8?q?=E2=80=9Cset=20up=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/ccache.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ccache.cpp b/src/ccache.cpp index 700059c3f..b807e1cc6 100644 --- a/src/ccache.cpp +++ b/src/ccache.cpp @@ -3436,7 +3436,7 @@ tmpdir() // Read config file(s), populate variables, create configuration file in cache // directory if missing, etc. static void -setup_config(Config& config) +set_up_config(Config& config) { char* p = getenv("CCACHE_CONFIGPATH"); if (p) { @@ -3500,7 +3500,7 @@ initialize() exitfn_add_nullary(stats_flush); exitfn_add_nullary(clean_up_pending_tmp_files); - setup_config(g_config); + set_up_config(g_config); cc_log("=== CCACHE %s STARTED =========================================", CCACHE_VERSION); @@ -4037,9 +4037,9 @@ ccache_main_options(int argc, char* argv[]) x_exit(1); } - // Some of the above switches might have changed config settings, so - // run the setup again. - setup_config(g_config); + // Some of the above switches might have changed config settings, so run the + // setup again. + set_up_config(g_config); } return 0; -- 2.47.2