From: Alexander Bulekov Date: Thu, 27 Feb 2020 03:14:39 +0000 (-0500) Subject: qtest: fix fuzzer-related 80-char limit violations X-Git-Tag: v5.0.0-rc0~53^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3fc92f875224cc15eceafb133ae542bbefb959e6;p=thirdparty%2Fqemu.git qtest: fix fuzzer-related 80-char limit violations Signed-off-by: Alexander Bulekov Reviewed-by: Eric Blake Reviewed-by: Darren Kenny Message-id: 20200227031439.31386-3-alxndr@bu.edu Signed-off-by: Stefan Hajnoczi --- diff --git a/qtest.c b/qtest.c index 1af4e1b08dd..5672b75c354 100644 --- 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; diff --git a/tests/qtest/fuzz/qos_fuzz.c b/tests/qtest/fuzz/qos_fuzz.c index bbb17470ffd..1a99277d60f 100644 --- a/tests/qtest/fuzz/qos_fuzz.c +++ b/tests/qtest/fuzz/qos_fuzz.c @@ -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 */