summaryrefslogtreecommitdiff
path: root/src/string/memccpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/memccpy.c')
-rw-r--r--src/string/memccpy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string/memccpy.c b/src/string/memccpy.c
index 4a875cf5..2ccb31bb 100644
--- a/src/string/memccpy.c
+++ b/src/string/memccpy.c
@@ -22,7 +22,7 @@ void *memccpy(void *dest, const void *src, int c, size_t n)
k = ONES * c;
wd=(void *)d; ws=(const void *)s;
for (; n>=sizeof(size_t) && !HASZERO(*ws^k);
- n-=sizeof(size_t), ws++, *wd++) *wd = *ws;
+ n-=sizeof(size_t), ws++, wd++) *wd = *ws;
d=(void *)wd; s=(const void *)ws;
}
for (; n && (*d=*s)!=c; n--, s++, d++);