]> Git Repo - qemu.git/commitdiff
qtest: fix fuzzer-related 80-char limit violations
authorAlexander Bulekov <[email protected]>
Thu, 27 Feb 2020 03:14:39 +0000 (22:14 -0500)
committerStefan Hajnoczi <[email protected]>
Fri, 6 Mar 2020 10:33:26 +0000 (10:33 +0000)
Signed-off-by: Alexander Bulekov <[email protected]>
Reviewed-by: Eric Blake <[email protected]>
Reviewed-by: Darren Kenny <[email protected]>
Message-id: 20200227031439[email protected]
Signed-off-by: Stefan Hajnoczi <[email protected]>
qtest.c
tests/qtest/fuzz/qos_fuzz.c

diff --git a/qtest.c b/qtest.c
index 1af4e1b08ddf5715948ac7adda46929264871c34..5672b75c354b6cdae5df0b0d49e0ba9da0b13faf 100644 (file)
--- a/qtest.c
+++ b/qtest.c
@@ -794,7 +794,8 @@ void qtest_server_init(const char *qtest_chrdev, const char *qtest_log, Error **
     }
 }
 
-void qtest_server_set_send_handler(void (*send)(void*, const char*), void *opaque)
+void qtest_server_set_send_handler(void (*send)(void*, const char*),
+                                   void *opaque)
 {
     qtest_server_send = send;
     qtest_server_send_opaque = opaque;
index bbb17470ffdbc7cf767ae710aca599f2838d6a51..1a99277d60f1718468327b198519dc37889fa236 100644 (file)
@@ -120,7 +120,10 @@ static void walk_path(QOSGraphNode *orig_path, int len)
     QOSGraphNode *path;
     QOSGraphEdge *edge;
 
-    /* etype set to QEDGE_CONSUMED_BY so that machine can add to the command line */
+    /*
+     * etype set to QEDGE_CONSUMED_BY so that machine can add to the command
+     * line
+     */
     QOSEdgeType etype = QEDGE_CONSUMED_BY;
 
     /* twice QOS_PATH_MAX_ELEMENT_SIZE since each edge can have its arg */
This page took 0.03046 seconds and 4 git commands to generate.