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

libdm: move new added field to structure end

For backwared compatibility add new struct field to the end.

(in release fix)
This commit is contained in:
Zdenek Kabelac 2013-07-24 16:49:48 +02:00
parent da5284a500
commit cb9256111a

View File

@ -1581,10 +1581,10 @@ struct dm_config_value {
};
struct dm_config_node {
int id;
const char *key;
struct dm_config_node *parent, *sib, *child;
struct dm_config_value *v;
int id;
};
struct dm_config_tree {