1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-05 12:56:08 +00:00

Remove a debug output statement.

This commit is contained in:
Robert Drehmel 2002-07-07 15:29:00 +00:00
parent e1e9c75605
commit 3b1320f9de
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=99533

View File

@ -225,10 +225,6 @@ sbuf_need(struct sbuf *sbuf, int nchars)
size *= 2;
cntsize = sbuf->end - sbuf->content;
printf("sbuf %p content %p;"
" allocating %d bytes for %d bytes of content to hold"
" %d bytes\n", sbuf, sbuf->content, size, cntsize, nchars);
new_content = (char *)malloc(size);
memcpy(new_content, sbuf->content, cntsize);
free(sbuf->content);