aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/wtap.c
diff options
context:
space:
mode:
Diffstat (limited to 'wiretap/wtap.c')
-rw-r--r--wiretap/wtap.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/wiretap/wtap.c b/wiretap/wtap.c
index 2d515721a1..64fbcf8d69 100644
--- a/wiretap/wtap.c
+++ b/wiretap/wtap.c
@@ -1035,9 +1035,7 @@ wtap_buf_ptr(wtap *wth)
gboolean
wtap_seek_read(wtap *wth, gint64 seek_off,
- struct wtap_pkthdr *phdr, Buffer *buf, int len,
- int *err, gchar **err_info)
+ struct wtap_pkthdr *phdr, Buffer *buf, int *err, gchar **err_info)
{
- return wth->subtype_seek_read(wth, seek_off, phdr, buf, len,
- err, err_info);
+ return wth->subtype_seek_read(wth, seek_off, phdr, buf, err, err_info);
}