aboutsummaryrefslogtreecommitdiffstats
path: root/sharkd.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-12-03 10:53:58 -0800
committerGuy Harris <guy@alum.mit.edu>2017-12-03 18:54:37 +0000
commiteb8ffb74e27523492855268abf5cb45927ffdb04 (patch)
tree3c6eb1e8a931a146a70e3dfe7836884b10c17d2c /sharkd.c
parent114c989fb37b25671d8886458b206f11471b3277 (diff)
Use cfile.h to define the capture_file type.
Have cfile-int.h declare the structure, and use it in files that directly access the structure. Have cfile.h just incompletely declare the structure and include it rather than explicitly declaring it in source files or other header files. Never directly refer to struct _capture_file except when typedeffing capture_file. Add #includes as necessary, now that cfile.h doesn't drag in a ton of Change-Id: I7931c8039d75ff7c980b0f2a6e221f20e602a556 Reviewed-on: https://code.wireshark.org/review/24686 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'sharkd.c')
-rw-r--r--sharkd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sharkd.c b/sharkd.c
index e7cfc3bd58..31b2c185cc 100644
--- a/sharkd.c
+++ b/sharkd.c
@@ -224,7 +224,7 @@ clean_exit:
}
static const nstime_t *
-sharkd_get_frame_ts(struct _capture_file *cf, guint32 frame_num)
+sharkd_get_frame_ts(capture_file *cf, guint32 frame_num)
{
if (ref && ref->num == frame_num)
return &ref->abs_ts;