about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNoah Goldstein <goldstein.w.n@gmail.com>2022-02-18 17:00:25 -0600
committerH.J. Lu <hjl.tools@gmail.com>2022-02-18 18:20:50 -0800
commitd385079bd55064f441348b0dde05bc779fab4f88 (patch)
tree747173b32f2249f17295d5b9ef8b8fd89fcd84a0
parent7df3ad65603a5e5f7d9cca819a6814be135bf4f7 (diff)
downloadglibc-d385079bd55064f441348b0dde05bc779fab4f88.tar.gz
glibc-d385079bd55064f441348b0dde05bc779fab4f88.tar.xz
glibc-d385079bd55064f441348b0dde05bc779fab4f88.zip
x86: Fix TEST_NAME to make it a string in tst-strncmp-rtm.c
Previously TEST_NAME was passing a function pointer. This didn't fail
because of the -Wno-error flag (to allow for overflow sizes passed
to strncmp/wcsncmp)

Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
(cherry picked from commit b98d0bbf747f39770e0caba7e984ce9f8f900330)
-rw-r--r--sysdeps/x86/tst-strncmp-rtm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/x86/tst-strncmp-rtm.c b/sysdeps/x86/tst-strncmp-rtm.c
index 4e9f094f39..aef9866cf2 100644
--- a/sysdeps/x86/tst-strncmp-rtm.c
+++ b/sysdeps/x86/tst-strncmp-rtm.c
@@ -23,12 +23,12 @@
 # define CHAR wchar_t
 # define MEMSET wmemset
 # define STRNCMP wcsncmp
-# define TEST_NAME wcsncmp
+# define TEST_NAME "wcsncmp"
 #else /* !WIDE */
 # define CHAR char
 # define MEMSET memset
 # define STRNCMP strncmp
-# define TEST_NAME strncmp
+# define TEST_NAME "strncmp"
 #endif /* !WIDE */