about summary refs log tree commit diff
path: root/debug/wcsnrtombs_chk.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/wcsnrtombs_chk.c')
-rw-r--r--debug/wcsnrtombs_chk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/wcsnrtombs_chk.c b/debug/wcsnrtombs_chk.c
index 122cd4b7f8..f8bde89da6 100644
--- a/debug/wcsnrtombs_chk.c
+++ b/debug/wcsnrtombs_chk.c
@@ -23,7 +23,7 @@ size_t
 __wcsnrtombs_chk (char *dst, const wchar_t **src, size_t nwc, size_t len,
 		  mbstate_t *ps, size_t dstlen)
 {
-  if (__builtin_expect (dstlen < len, 0))
+  if (__glibc_unlikely (dstlen < len))
     __chk_fail ();
 
   return __wcsnrtombs (dst, src, nwc, len, ps);