[examples] stupid bug with copying fixed;

This commit is contained in:
Alexander Vdolainen 2016-03-28 00:09:02 +03:00
parent f25b8509b7
commit 6db8841382

View File

@ -79,7 +79,7 @@ static inline int __removechar(char *b, size_t chrs)
char *c = b + chrs;
size_t blen = strlen(c) + sizeof(char);
memcpy(b, c, blen);
memmove(b, c, blen);
return chrs;
}