]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - debug/wcsrtombs_chk.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / debug / wcsrtombs_chk.c
index e8daa1b6bd7496a3ea226caa057cafbcf047cef0..f499b48f331f6e1512a658f237a115d92b9bc0c1 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2005, 2012 Free Software Foundation, Inc.
+/* Copyright (C) 2005-2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -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);