summaryrefslogtreecommitdiff
path: root/mate-disk-image-mounter/src
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-10-28 10:53:22 +0200
committerraveit65 <[email protected]>2022-02-11 18:34:16 +0100
commitae5293ecdb902c6ff3f4870e6ae94c69024b3288 (patch)
tree70188fa3c679b9f80e5aba95b0f19f05d6b6b0e2 /mate-disk-image-mounter/src
parentcada649969593de91457ba91901b8dd5e2ddb36f (diff)
downloadmate-utils-ae5293ecdb902c6ff3f4870e6ae94c69024b3288.tar.bz2
mate-utils-ae5293ecdb902c6ff3f4870e6ae94c69024b3288.tar.xz
Fix build warnings about missing field initializer
Diffstat (limited to 'mate-disk-image-mounter/src')
-rw-r--r--mate-disk-image-mounter/src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mate-disk-image-mounter/src/main.c b/mate-disk-image-mounter/src/main.c
index fc65b2d5..49855bbb 100644
--- a/mate-disk-image-mounter/src/main.c
+++ b/mate-disk-image-mounter/src/main.c
@@ -79,7 +79,7 @@ static gboolean opt_writable = FALSE;
static const GOptionEntry opt_entries[] =
{
{ "writable", 'w', 0, G_OPTION_ARG_NONE, &opt_writable, N_("Allow writing to the image"), NULL},
- { NULL }
+ { NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL }
};
/* ---------------------------------------------------------------------------------------------------- */