[libvirt] [PATCH 07/20] qemumonitortestutils: remove multiline function calls

Peter Krempa pkrempa at redhat.com
Tue Jul 30 13:05:42 UTC 2013


---
 tests/qemumonitortestutils.c | 13 +++----------
 1 file changed, 3 insertions(+), 10 deletions(-)

diff --git a/tests/qemumonitortestutils.c b/tests/qemumonitortestutils.c
index a3c5431..34ca1ae 100644
--- a/tests/qemumonitortestutils.c
+++ b/tests/qemumonitortestutils.c
@@ -94,12 +94,8 @@ qemuMonitorTestAddReponse(qemuMonitorTestPtr test,
     }

     want -= 2;
-    memcpy(test->outgoing + test->outgoingLength,
-           response,
-           want);
-    memcpy(test->outgoing + test->outgoingLength + want,
-           "\r\n",
-           2);
+    memcpy(test->outgoing + test->outgoingLength, response, want);
+    memcpy(test->outgoing + test->outgoingLength + want, "\r\n", 2);
     test->outgoingLength += want + 2;
     return 0;
 }
@@ -484,10 +480,7 @@ qemuMonitorTestNew(bool json, virDomainXMLOptionPtr xmlopt)
     if (!(test->vm = virDomainObjNew(xmlopt)))
         goto error;

-    if (virNetSocketNewListenUNIX(path,
-                                  0700,
-                                  getuid(),
-                                  getgid(),
+    if (virNetSocketNewListenUNIX(path, 0700, getuid(), getgid(),
                                   &test->server) < 0)
         goto error;

-- 
1.8.3.2




More information about the libvir-list mailing list