1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

o segments will have to be held as an array of pointers since they're now

variable sized.
This commit is contained in:
Joe Thornber 2001-11-26 13:03:36 +00:00
parent 23687ed34d
commit 79437c2734

View File

@ -116,7 +116,7 @@ struct logical_volume {
/* the segment array */ /* the segment array */
uint32_t segment_count; uint32_t segment_count;
struct stripe_segment *segments; struct stripe_segment **segments;
}; };
struct name_list { struct name_list {