diff options
author | robert <robert@FreeBSD.org> | 2002-07-07 15:29:00 +0000 |
---|---|---|
committer | robert <robert@FreeBSD.org> | 2002-07-07 15:29:00 +0000 |
commit | 8f46f70dc0f47e35e13614f0f2999e269bd140be (patch) | |
tree | 39f9cbf2079d3d206d787f58bbf13870621402cf /usr.bin/makewhatis | |
parent | 2284d5668e23979a7259e495259df5b794c09b9a (diff) | |
download | FreeBSD-src-8f46f70dc0f47e35e13614f0f2999e269bd140be.zip FreeBSD-src-8f46f70dc0f47e35e13614f0f2999e269bd140be.tar.gz |
Remove a debug output statement.
Diffstat (limited to 'usr.bin/makewhatis')
-rw-r--r-- | usr.bin/makewhatis/makewhatis.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/usr.bin/makewhatis/makewhatis.c b/usr.bin/makewhatis/makewhatis.c index 0fef9a9..0ac4fc1 100644 --- a/usr.bin/makewhatis/makewhatis.c +++ b/usr.bin/makewhatis/makewhatis.c @@ -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); |