about summary refs log tree commit diff
path: root/debug/mempcpy_chk.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/mempcpy_chk.c')
-rw-r--r--debug/mempcpy_chk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/mempcpy_chk.c b/debug/mempcpy_chk.c
index 87db7e1e10..105356f978 100644
--- a/debug/mempcpy_chk.c
+++ b/debug/mempcpy_chk.c
@@ -30,7 +30,7 @@ __mempcpy_chk (dstpp, srcpp, len, dstlen)
      size_t len;
      size_t dstlen;
 {
-  if (__builtin_expect (dstlen < len, 0))
+  if (__glibc_unlikely (dstlen < len))
     __chk_fail ();
 
   return __mempcpy (dstpp, srcpp, len);