Merge two lines.

This commit is contained in:
Emil Mikulic 2003-12-13 07:37:52 +00:00
parent b2e4f924b9
commit 0f798c0d71
1 changed files with 1 additions and 2 deletions

View File

@ -423,8 +423,7 @@ static void appendl(struct apbuf *buf, const char *s, const size_t len)
static void append(struct apbuf *buf, const char *s)
{
size_t len = strlen(s);
appendl(buf, s, len);
appendl(buf, s, strlen(s));
}