From: Siddhesh Poyarekar Date: Sat, 1 Jul 2017 14:21:44 +0000 (+0530) Subject: Fix typo in glibc.tune.cpu name X-Git-Tag: upstream/2.30~3107 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=47ea614b9afcdaef80e09d58afcdad4f96ba3f15;p=platform%2Fupstream%2Fglibc.git Fix typo in glibc.tune.cpu name --- diff --git a/ChangeLog b/ChangeLog index b6fe639..58ce877 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 47c7d97..0275d11 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