diff options
| author | Philippe Mathieu-Daudé <[email protected]> | 2020-03-05 02:04:46 +0100 |
|---|---|---|
| committer | Laurent Vivier <[email protected]> | 2020-03-09 15:59:31 +0100 |
| commit | b8ccfadc1f95b73766bf1ff33ea3549e37bd7c92 (patch) | |
| tree | 4498a74bdb390510709e0f979927c81e2b4951b2 /fsdev | |
| parent | da5cf9a4fef1e04608501605b4697f39ea56e0ea (diff) | |
virtfs-proxy-helper: Make the helper_opts[] array const
Reduce a bit the memory footprint by making the helper_opts[]
array const.
Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
Acked-by: Greg Kurz <[email protected]>
Acked-by: Paolo Bonzini <[email protected]>
Reviewed-by: Stefano Garzarella <[email protected]>
Message-Id: <[email protected]>
Signed-off-by: Laurent Vivier <[email protected]>
Diffstat (limited to 'fsdev')
| -rw-r--r-- | fsdev/virtfs-proxy-helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fsdev/virtfs-proxy-helper.c b/fsdev/virtfs-proxy-helper.c index aa1ab2590d..de061a8a0e 100644 --- a/fsdev/virtfs-proxy-helper.c +++ b/fsdev/virtfs-proxy-helper.c @@ -43,7 +43,7 @@ #define BTRFS_SUPER_MAGIC 0x9123683E #endif -static struct option helper_opts[] = { +static const struct option helper_opts[] = { {"fd", required_argument, NULL, 'f'}, {"path", required_argument, NULL, 'p'}, {"nodaemon", no_argument, NULL, 'n'}, |
