[libvirt] [PATCH] Add missing break to switch-case block

2013-11-19 Thread Doug Goldstein
The case label for VIR_DOMAIN_EVENT_ID_DEVICE_REMOVED did not have its own break statement but relied on falling through which we probably don't want. --- python/libvirt-override.c | 1 + 1 file changed, 1 insertion(+) diff --git a/python/libvirt-override.c b/python/libvirt-override.c index

Re: [libvirt] [PATCH] Add missing break to switch-case block

2013-11-19 Thread Martin Kletzander
On Tue, Nov 19, 2013 at 10:32:01AM -0600, Doug Goldstein wrote: The case label for VIR_DOMAIN_EVENT_ID_DEVICE_REMOVED did not have its own break statement but relied on falling through which we probably don't want. --- python/libvirt-override.c | 1 + 1 file changed, 1 insertion(+) diff

Re: [libvirt] [PATCH] Add missing break to switch-case block

2013-11-19 Thread Doug Goldstein
On Tue, Nov 19, 2013 at 10:39 AM, Martin Kletzander mklet...@redhat.com wrote: On Tue, Nov 19, 2013 at 10:32:01AM -0600, Doug Goldstein wrote: The case label for VIR_DOMAIN_EVENT_ID_DEVICE_REMOVED did not have its own break statement but relied on falling through which we probably don't want.