aboutsummaryrefslogtreecommitdiffstats
path: root/capchild
diff options
context:
space:
mode:
Diffstat (limited to 'capchild')
-rw-r--r--capchild/capture_session.h6
-rw-r--r--capchild/capture_sync.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/capchild/capture_session.h b/capchild/capture_session.h
index cb4b3793bd..4579c762e9 100644
--- a/capchild/capture_session.h
+++ b/capchild/capture_session.h
@@ -44,7 +44,7 @@ typedef enum {
CAPTURE_RUNNING /**< capture child signalled ok, capture is running now */
} capture_state;
-struct _capture_file;
+#include "cfile.h"
struct _info_data;
/*
* State of a capture session.
@@ -63,12 +63,12 @@ typedef struct _capture_session {
gboolean session_started;
guint32 count; /**< Total number of frames captured */
capture_options *capture_opts; /**< options for this capture */
- struct _capture_file *cf; /**< handle to cfile */
+ capture_file *cf; /**< handle to cfile */
struct _info_data *cap_data_info; /**< stats for this capture */
} capture_session;
extern void
-capture_session_init(capture_session *cap_session, struct _capture_file *cf);
+capture_session_init(capture_session *cap_session, capture_file *cf);
#else
/* dummy is needed because clang throws the error: empty struct has size 0 in C, size 1 in C++ */
diff --git a/capchild/capture_sync.c b/capchild/capture_sync.c
index 1cc09d74cf..723449f701 100644
--- a/capchild/capture_sync.c
+++ b/capchild/capture_sync.c
@@ -122,7 +122,7 @@ static void (*fetch_dumpcap_pid)(ws_process_id) = NULL;
void
-capture_session_init(capture_session *cap_session, struct _capture_file *cf)
+capture_session_init(capture_session *cap_session, capture_file *cf)
{
cap_session->cf = cf;
cap_session->fork_child = WS_INVALID_PID; /* invalid process handle */