summaryrefslogtreecommitdiff
path: root/debug/confstr_chk.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/confstr_chk.c')
-rw-r--r--debug/confstr_chk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/debug/confstr_chk.c b/debug/confstr_chk.c
index 4253540c57..6a4ff7a7f8 100644
--- a/debug/confstr_chk.c
+++ b/debug/confstr_chk.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2005-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2005-2015 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@readhat.com>, 20055.
@@ -22,7 +22,7 @@
size_t
__confstr_chk (int name, char *buf, size_t len, size_t buflen)
{
- if (__builtin_expect (buflen < len, 0))
+ if (__glibc_unlikely (buflen < len))
__chk_fail ();
return confstr (name, buf, len);