summaryrefslogtreecommitdiff
path: root/debug/wcsrtombs_chk.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/wcsrtombs_chk.c')
-rw-r--r--debug/wcsrtombs_chk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/wcsrtombs_chk.c b/debug/wcsrtombs_chk.c
index 48ae91df41..9d8ea5d8c2 100644
--- a/debug/wcsrtombs_chk.c
+++ b/debug/wcsrtombs_chk.c
@@ -23,7 +23,7 @@ size_t
__wcsrtombs_chk (char *dst, const wchar_t **src, size_t len,
mbstate_t *ps, size_t dstlen)
{
- if (__builtin_expect (dstlen < len, 0))
+ if (__glibc_unlikely (dstlen < len))
__chk_fail ();
return __wcsrtombs (dst, src, len, ps);