diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-06-20 13:11:38 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-06-20 13:11:38 +0200 |
commit | b852a1a422a99e7b31ac6ad991cf0893bf2e6d59 (patch) | |
tree | 3652f32173ee036c264ee009e2eb59e1fc3b8182 | |
parent | a2e9476a0eb01dd64bc4dc7734748fc8a70d7360 (diff) |
Rename function name
-rw-r--r-- | make.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -56,7 +56,7 @@ static void cc(void *); static void gperf(void *); static void ld(void); static bool tagvalid(const char *); -static void ckd_cpu_flags(void); +static void chk_cpu_flags(void); static int globerr(const char *, int); static void @@ -113,7 +113,7 @@ main(int argc, char **argv) return EXIT_SUCCESS; } - ckd_cpu_flags(); + chk_cpu_flags(); int procs = nproc(); if (procs == -1) @@ -244,7 +244,7 @@ tagvalid(const char *file) } void -ckd_cpu_flags(void) +chk_cpu_flags(void) { if (!rflag) return; |