aboutsummaryrefslogtreecommitdiffstats
path: root/cfile.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2017-12-01 11:13:18 -0800
committerAnders Broman <a.broman58@gmail.com>2017-12-01 21:09:24 +0000
commit28b6616ea0d39cc699e4db9bccbb7948a55c7239 (patch)
tree34ae0358ecc0349f0e76ab741fd436115612614c /cfile.h
parent219c5463d121a2ed51820fdda60a48e3fa27c6ca (diff)
Get rid of some void pointers.
Explictly struct _capture_file * in epan_session and its callbacks. Change-Id: I63703015c661a08f3350a7448a7bcdaf98f119dc Reviewed-on: https://code.wireshark.org/review/24675 Reviewed-by: Gerald Combs <gerald@wireshark.org> Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'cfile.h')
-rw-r--r--cfile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cfile.h b/cfile.h
index bfb7d9bbca..8f323648bb 100644
--- a/cfile.h
+++ b/cfile.h
@@ -112,8 +112,8 @@ typedef struct _capture_file {
extern void cap_file_init(capture_file *cf);
-extern const char *cap_file_get_interface_name(void *data, guint32 interface_id);
-extern const char *cap_file_get_interface_description(void *data, guint32 interface_id);
+extern const char *cap_file_get_interface_name(struct _capture_file *cf, guint32 interface_id);
+extern const char *cap_file_get_interface_description(struct _capture_file *cf, guint32 interface_id);
#ifdef __cplusplus
}