diff options
author | Markus Armbruster | 2020-03-17 12:54:38 +0100 |
---|---|---|
committer | Markus Armbruster | 2020-03-17 19:58:34 +0100 |
commit | 7b3bc9e28f366e591ae6da0d0c58d05d9f487ced (patch) | |
tree | 7d538af7234ed6126240cf4478d726fef8d47c0d /scripts/qapi/commands.py | |
parent | qapi: Add feature flags to remaining definitions (diff) | |
download | qemu-7b3bc9e28f366e591ae6da0d0c58d05d9f487ced.tar.gz qemu-7b3bc9e28f366e591ae6da0d0c58d05d9f487ced.tar.xz qemu-7b3bc9e28f366e591ae6da0d0c58d05d9f487ced.zip |
qapi: Consistently put @features parameter right after @ifcond
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20200317115459.31821-14-armbru@redhat.com>
Diffstat (limited to 'scripts/qapi/commands.py')
-rw-r--r-- | scripts/qapi/commands.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/qapi/commands.py b/scripts/qapi/commands.py index 0e13e82989..bc30876c88 100644 --- a/scripts/qapi/commands.py +++ b/scripts/qapi/commands.py @@ -283,9 +283,9 @@ void %(c_prefix)sqmp_init_marshal(QmpCommandList *cmds); prefix=self._prefix)) self._genc.add(gen_registry(self._regy.get_content(), self._prefix)) - def visit_command(self, name, info, ifcond, arg_type, ret_type, gen, - success_response, boxed, allow_oob, allow_preconfig, - features): + def visit_command(self, name, info, ifcond, features, + arg_type, ret_type, gen, success_response, boxed, + allow_oob, allow_preconfig): if not gen: return # FIXME: If T is a user-defined type, the user is responsible |