1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

lws_system: just define opaque struct instead of the typedef

This commit is contained in:
Andy Green 2020-02-10 09:06:28 +00:00
parent a404f5e95a
commit 73252d94c5

View file

@ -274,7 +274,7 @@ struct lws_deferred_free
void *payload;
};
typedef struct lws_system_blob {
struct lws_system_blob {
union {
struct lws_buflist *bl;
struct {
@ -283,7 +283,7 @@ typedef struct lws_system_blob {
} direct;
} u;
char is_direct;
} lws_system_blob_t;
};
typedef struct lws_attach_item {