From cb8dff2149c393c94c2abbef186c564829b97e93 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 7 Apr 2011 16:19:30 -0400 Subject: fix misplaced *'s in string functions (harmless) --- src/string/memccpy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/string/memccpy.c') 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++); -- cgit v1.2.1