From: Eric Blake Date: Fri, 5 Jun 2015 03:44:48 +0000 (-0600) Subject: remote: fix odd comma operator X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=c7d0da23f1eece996522865c4c50f1517e2540fb;p=libvirt.git remote: fix odd comma operator Commit 1882c0bd accidentally used ',' instead of ';'; oddly enough, the result was still syntactically valid (yes, C is a fun language). But it made me do a double take; it's better to use idiomatic syntax. * daemon/remote.c (remoteRelayDomainEventDeviceAdded): Fix harmless typo. Signed-off-by: Eric Blake --- diff --git a/daemon/remote.c b/daemon/remote.c index e259a763b5..e9e2dcae80 100644 --- a/daemon/remote.c +++ b/daemon/remote.c @@ -1068,7 +1068,7 @@ remoteRelayDomainEventDeviceAdded(virConnectPtr conn, return -1; make_nonnull_domain(&data.dom, dom); - data.callbackID = callback->callbackID, + data.callbackID = callback->callbackID; remoteDispatchObjectEventSend(callback->client, remoteProgram, REMOTE_PROC_DOMAIN_EVENT_CALLBACK_DEVICE_ADDED,