[Qemu-devel] [PATCH v3 2/5] qmp: convert to use object_property_foreach iterators

2015-10-08 Thread Daniel P. Berrange
Rather than directly traversing the object property list, use the object_property_foreach iterator. This removes a dependancy on the implementation approach for properties. Signed-off-by: Daniel P. Berrange --- qmp.c | 103

Re: [Qemu-devel] [PATCH v3 2/5] qmp: convert to use object_property_foreach iterators

2015-10-08 Thread Eric Blake
On 10/08/2015 08:09 AM, Daniel P. Berrange wrote: > Rather than directly traversing the object property list, > use the object_property_foreach iterator. This removes a > dependancy on the implementation approach for properties. s/dependancy/dependency/ > > Signed-off-by: Daniel P. Berrange