diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-03-20 14:22:51 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-08-31 19:47:43 +0200 |
commit | a7041adce08c3cbe52d70c0229cbec4167b358e3 (patch) | |
tree | f104e8bd0eedf70a828717f8234c95b185638223 /include | |
parent | 669dcb606eb244689dd96654309674c0b8eca092 (diff) |
qemu/uri: Use QueryParams type definition
Follow QEMU CODING_STYLE, use the type definition,
making that prototype match the following two.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20230605175647.88395-4-philmd@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu/uri.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qemu/uri.h b/include/qemu/uri.h index b43f35a6a6..2875c51417 100644 --- a/include/qemu/uri.h +++ b/include/qemu/uri.h @@ -96,7 +96,7 @@ typedef struct QueryParams { QueryParam *p; /* array of parameters */ } QueryParams; -struct QueryParams *query_params_new (int init_alloc); +QueryParams *query_params_new (int init_alloc); extern QueryParams *query_params_parse (const char *query); extern void query_params_free (QueryParams *ps); |