diff options
author | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2017-07-01 19:51:44 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2017-07-01 19:51:44 +0530 |
commit | 47ea614b9afcdaef80e09d58afcdad4f96ba3f15 (patch) | |
tree | c3421fbbbddf7239604e9e22f526d1aa6f41d1c1 /sysdeps/unix/sysv/linux/aarch64/cpu-features.c | |
parent | 8466ee1cb7c2041d8471dad0aa53af35ab599012 (diff) | |
download | glibc-47ea614b9afcdaef80e09d58afcdad4f96ba3f15.tar.gz |
Fix typo in glibc.tune.cpu name
Diffstat (limited to 'sysdeps/unix/sysv/linux/aarch64/cpu-features.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/aarch64/cpu-features.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/aarch64/cpu-features.c b/sysdeps/unix/sysv/linux/aarch64/cpu-features.c index 47c7d97185..0275d11c7f 100644 --- a/sysdeps/unix/sysv/linux/aarch64/cpu-features.c +++ b/sysdeps/unix/sysv/linux/aarch64/cpu-features.c @@ -53,7 +53,7 @@ init_cpu_features (struct cpu_features *cpu_features) #if HAVE_TUNABLES /* Get the tunable override. */ - const char *mcpu = TUNABLE_GET (glibc, tune, mcpu, const char *, NULL); + const char *mcpu = TUNABLE_GET (glibc, tune, cpu, const char *, NULL); if (mcpu != NULL) midr = get_midr_from_mcpu (mcpu); #endif |