doc: fix code example which may provoke warning

This commit is contained in:
Denis Vlasenko 2007-04-15 11:50:41 +00:00
parent 8acf521432
commit 84f75b0b94

View File

@ -682,7 +682,7 @@ Then have long options defined:
static const struct option <applet>_long_options[] = {
{ "list", 0, NULL, 't' },
{ "extract", 0, NULL, 'x' },
{ NULL }
{ NULL, 0, NULL, 0 }
};
And a code block similar to the following near the top of your applet_main()