From: Siddhesh Poyarekar Date: Sat, 1 Jul 2017 14:21:44 +0000 (+0530) Subject: Fix typo in glibc.tune.cpu name X-Git-Tag: glibc-2.26~168 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=47ea614b9afcdaef80e09d58afcdad4f96ba3f15;p=thirdparty%2Fglibc.git Fix typo in glibc.tune.cpu name --- diff --git a/ChangeLog b/ChangeLog index b6fe639d561..58ce87749e0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2017-07-01 Ramana Radhakrishnan + + * sysdeps/unix/sysv/aarch64/cpu-features.c (init_cpu_features): + Fix typo. + 2017-06-30 Gabriel F. T. Gomes * include/math.h (__signbitf128): Define as hidden. diff --git a/sysdeps/unix/sysv/linux/aarch64/cpu-features.c b/sysdeps/unix/sysv/linux/aarch64/cpu-features.c index 47c7d971852..0275d11c7fa 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