diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-04-15 11:50:41 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-04-15 11:50:41 +0000 |
commit | b49b620d35dd4746de55f943900781eb605b7db6 (patch) | |
tree | 07c4ad1c8052712b58d2e6472da0736b6fb5af66 | |
parent | e0b950babcbb1440b4f32f2085e7595b76f71e79 (diff) | |
download | busybox-w32-b49b620d35dd4746de55f943900781eb605b7db6.tar.gz busybox-w32-b49b620d35dd4746de55f943900781eb605b7db6.tar.bz2 busybox-w32-b49b620d35dd4746de55f943900781eb605b7db6.zip |
doc: fix code example which may provoke warning
git-svn-id: svn://busybox.net/trunk/busybox@18452 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | docs/style-guide.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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: | |||
682 | static const struct option <applet>_long_options[] = { | 682 | static const struct option <applet>_long_options[] = { |
683 | { "list", 0, NULL, 't' }, | 683 | { "list", 0, NULL, 't' }, |
684 | { "extract", 0, NULL, 'x' }, | 684 | { "extract", 0, NULL, 'x' }, |
685 | { NULL } | 685 | { NULL, 0, NULL, 0 } |
686 | }; | 686 | }; |
687 | 687 | ||
688 | And a code block similar to the following near the top of your applet_main() | 688 | And a code block similar to the following near the top of your applet_main() |