summaryrefslogtreecommitdiff
path: root/debug/stpcpy_chk.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/stpcpy_chk.c')
-rw-r--r--debug/stpcpy_chk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/stpcpy_chk.c b/debug/stpcpy_chk.c
index d7228ec91b..4516137937 100644
--- a/debug/stpcpy_chk.c
+++ b/debug/stpcpy_chk.c
@@ -34,7 +34,7 @@ __stpcpy_chk (dest, src, destlen)
do
{
- if (__builtin_expect (destlen-- == 0, 0))
+ if (__glibc_unlikely (destlen-- == 0))
__chk_fail ();
*d++ = *s;
}