From c71961ede846ca470fc363f67dc7d65d2c7d182b Mon Sep 17 00:00:00 2001 From: guy Date: Wed, 6 Apr 2011 06:59:19 +0000 Subject: [PATCH] From Jakub Zawadzki: fix the type of an argument. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36492 f5534014-38df-0310-8fa8-9805f1628bb7 --- wiretap/k12.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiretap/k12.c b/wiretap/k12.c index 4e50cc3cb3..3b23224a0a 100644 --- a/wiretap/k12.c +++ b/wiretap/k12.c @@ -266,7 +266,7 @@ typedef struct _k12_src_desc_t { * * XXX: works at most with 0x1FFF bytes per record */ -static gint get_record(guint8** bufferp, FILE* fh, gint64 file_offset, +static gint get_record(guint8** bufferp, FILE_T fh, gint64 file_offset, int *err, gchar **err_info) { static guint8* buffer = NULL; static guint buffer_len = 0x2000 ; -- 2.34.1