aboutsummaryrefslogtreecommitdiff
path: root/libiberty/memchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'libiberty/memchr.c')
-rw-r--r--libiberty/memchr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/memchr.c b/libiberty/memchr.c
index cce30039437..89aa98f1d94 100644
--- a/libiberty/memchr.c
+++ b/libiberty/memchr.c
@@ -50,7 +50,7 @@ memchr (src_void, c, length)
{
const unsigned char *src = (const unsigned char *)src_void;
- while (--length >= 0)
+ while (length-- > 0)
{
if (*src == c)
return (PTR)src;