Commit bec8ea20 authored by Nicolas George's avatar Nicolas George

lavfi/framequeue: avoid empty structs.

Fix compilation on MSVC.
parent 25e35b34
......@@ -44,6 +44,7 @@ typedef struct FFFrameBucket {
* It is currently empty.
*/
typedef struct FFFrameQueueGlobal {
char dummy; /* C does not allow empty structs */
} FFFrameQueueGlobal;
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment