1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-11-17 08:24:20 +03:00

qemu_agent: Remove obvious comments

Most APIs in libvirt report errors, thus no need to state that
explicitly.
This commit is contained in:
Peter Krempa
2013-07-25 10:59:21 +02:00
parent 18a629167c
commit 56874f0191

View File

@@ -930,10 +930,8 @@ qemuAgentGuestSync(qemuAgentPtr mon)
VIR_DEBUG("qemuAgentSend returned: %d", send_ret);
if (send_ret < 0) {
/* error reported */
if (send_ret < 0)
goto cleanup;
}
if (!sync_msg.rxObject) {
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
@@ -976,10 +974,8 @@ qemuAgentCommand(qemuAgentPtr mon,
*reply = NULL;
if (qemuAgentGuestSync(mon) < 0) {
/* helper reported the error */
if (qemuAgentGuestSync(mon) < 0)
return -1;
}
memset(&msg, 0, sizeof(msg));