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:
parent
e1e9c75605
commit
3b1320f9de
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=99533
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user