diff options
| author | Greg Kurz <groug@kaod.org> | 2018-01-08 11:18:22 +0100 |
|---|---|---|
| committer | Greg Kurz <groug@kaod.org> | 2018-01-08 11:18:22 +0100 |
| commit | 7bd41d3db6b16775f5e17151fd380b976fed2d2f (patch) | |
| tree | 85504b6db24fc432011db7d3bc296d14b9041b95 /hw/9pfs/9p-local.c | |
| parent | c4ce2c0ff3e54639bb9c130fd9ade8d3503b661d (diff) | |
| download | focaccia-qemu-7bd41d3db6b16775f5e17151fd380b976fed2d2f.tar.gz focaccia-qemu-7bd41d3db6b16775f5e17151fd380b976fed2d2f.zip | |
9pfs: fix type in *_parse_opts declarations
To comply with the QEMU coding style. Signed-off-by: Greg Kurz <groug@kaod.org> Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'hw/9pfs/9p-local.c')
| -rw-r--r-- | hw/9pfs/9p-local.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/9pfs/9p-local.c b/hw/9pfs/9p-local.c index e51af87309..155834db28 100644 --- a/hw/9pfs/9p-local.c +++ b/hw/9pfs/9p-local.c @@ -1459,7 +1459,7 @@ static void local_cleanup(FsContext *ctx) g_free(data); } -static int local_parse_opts(QemuOpts *opts, struct FsDriverEntry *fse) +static int local_parse_opts(QemuOpts *opts, FsDriverEntry *fse) { const char *sec_model = qemu_opt_get(opts, "security_model"); const char *path = qemu_opt_get(opts, "path"); |