From: Joel Rosdahl Date: Sat, 8 Feb 2020 16:14:55 +0000 (+0100) Subject: Use correct spelling of the verb “set up” X-Git-Tag: v4.0~643 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=baeecfdb99c55da804d2532845a29975e5bae291;p=thirdparty%2Fccache.git Use correct spelling of the verb “set up” --- 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;