diff options
Diffstat (limited to 'spice1.proto')
-rw-r--r-- | spice1.proto | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spice1.proto b/spice1.proto index 75749af1..0150de22 100644 --- a/spice1.proto +++ b/spice1.proto @@ -374,8 +374,8 @@ struct PathSegment { } @ctype(SpicePathSeg); struct Path { - uint32 size; - PathSegment segments[bytes(size)] @end; + uint32 segments_size @bytes_count; + PathSegment segments[bytes(segments_size, num_segments)] @end; }; struct Clip { |