diff options
Diffstat (limited to '')
-rw-r--r-- | include/VBox/intnet.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/VBox/intnet.h b/include/VBox/intnet.h index 815143ff..2e593067 100644 --- a/include/VBox/intnet.h +++ b/include/VBox/intnet.h @@ -355,7 +355,8 @@ typedef struct INTNETSG /** The number of segments actually used. */ uint16_t cSegsUsed; /** Variable sized list of segments. */ - INTNETSEG aSegs[1]; + RT_FLEXIBLE_ARRAY_EXTENSION + INTNETSEG aSegs[RT_FLEXIBLE_ARRAY]; } INTNETSG; AssertCompileSizeAlignment(INTNETSG, 8); /** Pointer to a scatter / gather list. */ |