python: let libvirt_virConnectDomainEventCallback indicate successsubmission-5
commit68e1394d4363414400cf815227fcd678cd86cca3
authorJim Meyering <meyering@redhat.com>
Thu, 3 Sep 2009 12:09:49 +0000 (3 14:09 +0200)
committerJim Meyering <meyering@redhat.com>
Thu, 3 Sep 2009 16:04:24 +0000 (3 18:04 +0200)
treefb59c34ce78f94ff3209be30803a8998499096ae
parent11bca8e4d912f360926c29981b6faf9dba45bf86
python: let libvirt_virConnectDomainEventCallback indicate success

* python/libvir.c (libvirt_virConnectDomainEventCallback): Return 0
when successful, rather than always returning -1.
clang flagged this function for its dead-store of "ret=0".
Once "ret" was set to 0, it was never used, and
the function would always return -1.
libvir.c