about summary refs log tree commit diff
path: root/debug/wmempcpy_chk.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/wmempcpy_chk.c')
-rw-r--r--debug/wmempcpy_chk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/wmempcpy_chk.c b/debug/wmempcpy_chk.c
index 10be83c68c..cb62ab9478 100644
--- a/debug/wmempcpy_chk.c
+++ b/debug/wmempcpy_chk.c
@@ -23,7 +23,7 @@
 wchar_t *
 __wmempcpy_chk (wchar_t *s1, const wchar_t *s2, size_t n, size_t ns1)
 {
-  if (__builtin_expect (ns1 < n, 0))
+  if (__glibc_unlikely (ns1 < n))
     __chk_fail ();
   return (wchar_t *) __mempcpy ((char *) s1, (char *) s2,
 				n * sizeof (wchar_t));