wtf is up with the travis build now?

This commit is contained in:
Enno Rehling 2017-12-27 23:47:59 +01:00
parent 5c790e024c
commit 4018850499

View file

@ -40,7 +40,8 @@ size_t strlcpy(char *dst, const char *src, size_t siz)
register const char *s = src;
register size_t n = siz;
assert(src && dst);
assert(src);
assert(dst);
/* Copy as many bytes as will fit */
if (n != 0 && --n != 0) {
do {