diff options
author | John Snow | 2021-02-01 20:37:38 +0100 |
---|---|---|
committer | Markus Armbruster | 2021-02-08 14:15:58 +0100 |
commit | 12893a8ea7163e871abae05b5a42cdce1ad45225 (patch) | |
tree | 0f4147b7fec751def8c53e75cc5ecbfca62f563f /scripts/qapi/commands.py | |
parent | qapi/gen: Replace ._begin_system_module() (diff) | |
download | qemu-12893a8ea7163e871abae05b5a42cdce1ad45225.tar.gz qemu-12893a8ea7163e871abae05b5a42cdce1ad45225.tar.xz qemu-12893a8ea7163e871abae05b5a42cdce1ad45225.zip |
qapi: use explicitly internal module names
QAPISchemaModularCVisitor._add_system_module() prefixes './' to its name
argument to make it a module name. Pass the module name instead. This
will allow us to coalesce the methods to add modules later on.
Signed-off-by: John Snow <jsnow@redhat.com>
Message-Id: <20210201193747.2169670-8-jsnow@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
[Commit message reworded]
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'scripts/qapi/commands.py')
-rw-r--r-- | scripts/qapi/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/qapi/commands.py b/scripts/qapi/commands.py index 71744f48a3..fc5fe27c47 100644 --- a/scripts/qapi/commands.py +++ b/scripts/qapi/commands.py @@ -286,7 +286,7 @@ class QAPISchemaGenCommandVisitor(QAPISchemaModularCVisitor): types=types)) def visit_end(self) -> None: - self._add_system_module('init', ' * QAPI Commands initialization') + self._add_system_module('./init', ' * QAPI Commands initialization') self._genh.add(mcgen(''' #include "qapi/qmp/dispatch.h" |