Fix a debugging printout.

Change-Id: I06bc40bece3ea98578a252217c9de4748276a440
Reviewed-on: https://code.wireshark.org/review/4720
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2014-10-16 00:00:45 -07:00
parent 377a4865e3
commit c74cefbfc9
1 changed files with 2 additions and 2 deletions

View File

@ -2427,8 +2427,8 @@ pcapng_seek_read(wtap *wth, gint64 seek_off,
ret = pcapng_read_block(wth, wth->random_fh, pcapng, &wblock, err, err_info);
pcapng_free_wtapng_block_data(&wblock);
if (ret != PCAPNG_BLOCK_OK) {
pcapng_debug3("pcapng_seek_read: couldn't read packet block (err=%d, errno=%d, bytes_read=%d).",
*err, errno, bytes_read);
pcapng_debug1("pcapng_seek_read: couldn't read packet block (err=%d).",
*err);
return FALSE;
}