diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2025-08-14 18:13:17 +0100 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2025-08-30 16:37:23 +0100 |
| commit | 4a1bc66d3f61cb803b16bb1691e46b5ec59d25f5 (patch) | |
| tree | d48fed9caf2ad30f101e581ff247efef2414111d | |
| parent | 3f34478007a2423399dbdfae5e3deeca3898da9c (diff) | |
| download | focaccia-qemu-4a1bc66d3f61cb803b16bb1691e46b5ec59d25f5.tar.gz focaccia-qemu-4a1bc66d3f61cb803b16bb1691e46b5ec59d25f5.zip | |
tests/qtest/libqtest.h: Remove stray space from doc comment
The doc comment for qtest_cb_for_every_machine has a stray space at the start of its description, which makes kernel-doc think that this line is part of the documentation of the skip_old_versioned argument. The result is that the HTML doesn't have a "Description" section and the text is instead put in the wrong place. Remove the stray space. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> Message-id: 20250814171324.1614516-3-peter.maydell@linaro.org
| -rw-r--r-- | tests/qtest/libqtest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qtest/libqtest.h b/tests/qtest/libqtest.h index b3f2e7fbef..fd27521a9c 100644 --- a/tests/qtest/libqtest.h +++ b/tests/qtest/libqtest.h @@ -977,7 +977,7 @@ void qtest_qmp_fds_assert_success(QTestState *qts, int *fds, size_t nfds, * @cb: Pointer to the callback function * @skip_old_versioned: true if versioned old machine types should be skipped * - * Call a callback function for every name of all available machines. + * Call a callback function for every name of all available machines. */ void qtest_cb_for_every_machine(void (*cb)(const char *machine), bool skip_old_versioned); |