Re: [libvirt] [PATCH 4/9] src: Unify virObject member name

2018-04-16 Thread Erik Skultety
On Fri, Apr 13, 2018 at 04:47:11PM +0200, Michal Privoznik wrote: > Whenever we declare a new object the first member of the struct > has to be virObject (or any other member of that family). Now, up > until now we did not care about the name of the struct member. > But lets unify it so that we can

[libvirt] [PATCH 4/9] src: Unify virObject member name

2018-04-15 Thread Michal Privoznik
Whenever we declare a new object the first member of the struct has to be virObject (or any other member of that family). Now, up until now we did not care about the name of the struct member. But lets unify it so that we can do some checks at compile time later. The unified name is 'parent'. Sig