From c7d0da23f1eece996522865c4c50f1517e2540fb Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Thu, 4 Jun 2015 21:44:48 -0600 Subject: [PATCH] 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 --- daemon/remote.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.47.2