]> git.proxmox.com Git - mirror_qemu.git/commitdiff
qtest: fix fuzzer-related 80-char limit violations
authorAlexander Bulekov <alxndr@bu.edu>
Thu, 27 Feb 2020 03:14:39 +0000 (22:14 -0500)
committerStefan Hajnoczi <stefanha@redhat.com>
Fri, 6 Mar 2020 10:33:26 +0000 (10:33 +0000)
Signed-off-by: Alexander Bulekov <alxndr@bu.edu>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Darren Kenny <darren.kenny@oracle.com>
Message-id: 20200227031439.31386-3-alxndr@bu.edu
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
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 */