Missing newline character

This commit is contained in:
Dag-Erling Smørgrav 2014-07-13 21:34:54 +00:00 committed by des
parent 6be7e6da5f
commit d508e9ebc2

View file

@ -139,7 +139,7 @@ t_strlcat(char **desc CRYB_UNUSED, void *arg)
buf[T_BUFSIZE] = T_CANARY; buf[T_BUFSIZE] = T_CANARY;
sz = strlcat(buf, t->in, T_BUFSIZE); sz = strlcat(buf, t->in, T_BUFSIZE);
if (buf[T_BUFSIZE] != T_CANARY) { if (buf[T_BUFSIZE] != T_CANARY) {
t_verbose("buffer overflow"); t_verbose("buffer overflow\n");
return (0); return (0);
} }
ret = t_compare_sz(t->sz, sz); ret = t_compare_sz(t->sz, sz);