Remove printf debugging

This commit is contained in:
XANTRONIX Development 2019-05-21 11:03:02 -05:00
parent 13cc094cba
commit 1fe68ef639
2 changed files with 0 additions and 6 deletions

View file

@ -171,9 +171,6 @@ static ssize_t handle_block(hexagram_pcapng_stream *stream,
default: break; default: break;
} }
fprintf(stderr, "Read block type %08"PRIx32" len %zu\n",
type, len);
if (lseek(stream->fd, len, SEEK_CUR) < 0) { if (lseek(stream->fd, len, SEEK_CUR) < 0) {
stream->error = HEXAGRAM_PCAPNG_ERROR_IO; stream->error = HEXAGRAM_PCAPNG_ERROR_IO;

View file

@ -212,9 +212,6 @@ static ssize_t handle_block(hexagram_pcapng_stream *stream,
default: break; default: break;
} }
printf("Read block type %08"PRIx32" len %zu\n",
type, len);
if (lseek(stream->fd, len, SEEK_CUR) < 0) { if (lseek(stream->fd, len, SEEK_CUR) < 0) {
stream->error = HEXAGRAM_PCAPNG_ERROR_IO; stream->error = HEXAGRAM_PCAPNG_ERROR_IO;