mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-09 00:00:04 +01:00
google-fuzzer: avoid warnings about c / c++ size diff
This commit is contained in:
parent
8210ccba08
commit
e0c312c202
1 changed files with 3 additions and 3 deletions
|
@ -132,17 +132,17 @@ typedef struct lws_ss_handle {
|
|||
|
||||
union {
|
||||
struct { /* LWSSSP_H1 */
|
||||
#if defined(WIN32)
|
||||
#if defined(WIN32) || defined(FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION)
|
||||
uint8_t dummy;
|
||||
#endif
|
||||
} h1;
|
||||
struct { /* LWSSSP_H2 */
|
||||
#if defined(WIN32)
|
||||
#if defined(WIN32) || defined(FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION)
|
||||
uint8_t dummy;
|
||||
#endif
|
||||
} h2;
|
||||
struct { /* LWSSSP_WS */
|
||||
#if defined(WIN32)
|
||||
#if defined(WIN32) || defined(FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION)
|
||||
uint8_t dummy;
|
||||
#endif
|
||||
} ws;
|
||||
|
|
Loading…
Add table
Reference in a new issue