From ed93ed5ee320db299dc8c65d59c4f25e2eb0acdc Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Fri, 12 May 2017 20:00:49 +0200 Subject: avfilter: don't anonymously typedef structs Signed-off-by: Paul B Mahol --- libavfilter/f_zmq.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavfilter/f_zmq.c') diff --git a/libavfilter/f_zmq.c b/libavfilter/f_zmq.c index d6c3c65da4..2666016769 100644 --- a/libavfilter/f_zmq.c +++ b/libavfilter/f_zmq.c @@ -33,7 +33,7 @@ #include "audio.h" #include "video.h" -typedef struct { +typedef struct ZMQContext { const AVClass *class; void *zmq; void *responder; @@ -86,7 +86,7 @@ static void av_cold uninit(AVFilterContext *ctx) zmq_ctx_destroy(zmq->zmq); } -typedef struct { +typedef struct Command { char *target, *command, *arg; } Command; -- cgit v1.2.3