mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 10:04:32 +03:00
Use G_OPTION_ENTRY_NULL macro.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
f657d92e52
commit
de16ae9180
@ -3,6 +3,11 @@
|
||||
|
||||
/*** typedefs(not structures) and defined constants **********************************************/
|
||||
|
||||
#ifndef G_OPTION_ENTRY_NULL
|
||||
#define G_OPTION_ENTRY_NULL \
|
||||
{ NULL, '\0', 0, 0, NULL, NULL, NULL }
|
||||
#endif /* G_OPTION_ENTRY_NULL */
|
||||
|
||||
/*** enums ***************************************************************************************/
|
||||
|
||||
/*** structures declarations (and typedefs of structures)*****************************************/
|
||||
|
12
src/args.c
12
src/args.c
@ -194,9 +194,7 @@ static const GOptionEntry argument_main_table[] = {
|
||||
N_("<file> ...")
|
||||
},
|
||||
|
||||
{
|
||||
NULL, '\0', 0, 0, NULL, NULL, NULL /* Complete struct initialization */
|
||||
}
|
||||
G_OPTION_ENTRY_NULL
|
||||
/* *INDENT-ON* */
|
||||
};
|
||||
|
||||
@ -279,9 +277,7 @@ static const GOptionEntry argument_terminal_table[] = {
|
||||
NULL
|
||||
},
|
||||
|
||||
{
|
||||
NULL, '\0', 0, 0, NULL, NULL, NULL /* Complete struct initialization */
|
||||
}
|
||||
G_OPTION_ENTRY_NULL
|
||||
/* *INDENT-ON* */
|
||||
};
|
||||
|
||||
@ -321,9 +317,7 @@ static const GOptionEntry argument_color_table[] = {
|
||||
N_("<string>")
|
||||
},
|
||||
|
||||
{
|
||||
NULL, '\0', 0, 0, NULL, NULL, NULL /* Complete struct initialization */
|
||||
}
|
||||
G_OPTION_ENTRY_NULL
|
||||
/* *INDENT-ON* */
|
||||
};
|
||||
|
||||
|
@ -83,7 +83,7 @@ static GOptionEntry entries[] = {
|
||||
NULL},
|
||||
{"format", 'f', 0, G_OPTION_ARG_CALLBACK, parse_format_name_argument,
|
||||
"Output format. Default: ls.", "<ls|yaml>"},
|
||||
{NULL, '\0', 0, 0, NULL, NULL, NULL} /* Make the compiler shut up by initializing everything. */
|
||||
G_OPTION_ENTRY_NULL
|
||||
};
|
||||
|
||||
/*** file scope functions ************************************************************************/
|
||||
|
Loading…
Reference in New Issue
Block a user