diff options
-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 915d9b27d..d7d8e5ec7 100644 --- a/docs/style-guide.txt +++ b/docs/style-guide.txt | |||
@@ -445,7 +445,7 @@ First, some background to put this discussion in context: Static buffers look | |||
445 | like this in code: | 445 | like this in code: |
446 | 446 | ||
447 | /* in a .c file outside any functions */ | 447 | /* in a .c file outside any functions */ |
448 | static char *buffer[BUFSIZ]; /* happily used by any function in this file, | 448 | static char buffer[BUFSIZ]; /* happily used by any function in this file, |
449 | but ick! big! */ | 449 | but ick! big! */ |
450 | 450 | ||
451 | The problem with these is that any time any busybox app is run, you pay a | 451 | The problem with these is that any time any busybox app is run, you pay a |