From: Denis Vlasenko Date: Sun, 15 Apr 2007 11:50:41 +0000 (-0000) Subject: doc: fix code example which may provoke warning X-Git-Tag: 1_6_0~147 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=84f75b0b94e73ab4d491825181cf74051751dad0;p=oweals%2Fbusybox.git doc: fix code example which may provoke warning --- diff --git a/docs/style-guide.txt b/docs/style-guide.txt index 5bb3441cd..381275a1d 100644 --- a/docs/style-guide.txt +++ b/docs/style-guide.txt @@ -682,7 +682,7 @@ Then have long options defined: static const struct option _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()