]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Use correct spelling of the verb “set up”
authorJoel Rosdahl <joel@rosdahl.net>
Sat, 8 Feb 2020 16:14:55 +0000 (17:14 +0100)
committerJoel Rosdahl <joel@rosdahl.net>
Sat, 8 Feb 2020 16:14:55 +0000 (17:14 +0100)
src/ccache.cpp

index 700059c3fbd95b5cddd954a678062791c0bf64e8..b807e1cc60707b95b1cbf888f8ba52f9fa88e745 100644 (file)
@@ -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;