Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
philmd committed Aug 31, 2023
1 parent 669dcb6 commit a7041ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/qemu/uri.h
Expand Up @@ -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);

Expand Down

0 comments on commit a7041ad

Please sign in to comment.