[vlc-commits] satip: There is already an access_sys_t typedef
Hugo Beauzée-Luyssen
git at videolan.org
Thu Oct 12 16:56:52 CEST 2017
vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Thu Oct 12 16:31:35 2017 +0200| [067c25378f37dd5e3ab6cfc4b41b121518038f58] | committer: Hugo Beauzée-Luyssen
satip: There is already an access_sys_t typedef
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=067c25378f37dd5e3ab6cfc4b41b121518038f58
---
modules/access/satip.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/access/satip.c b/modules/access/satip.c
index b6e1695efc..f012e4b729 100644
--- a/modules/access/satip.c
+++ b/modules/access/satip.c
@@ -92,7 +92,7 @@ enum rtsp_result {
};
#define UDP_ADDRESS_LEN 16
-typedef struct access_sys_t {
+struct access_sys_t {
char *content_base;
char *control;
char session_id[64];
@@ -115,7 +115,7 @@ typedef struct access_sys_t {
uint16_t last_seq_nr;
bool woken;
-} access_sys_t;
+};
static void parse_session(char *request_line, char *session, unsigned max, int *timeout) {
char *state;
More information about the vlc-commits
mailing list