aboutsummaryrefslogtreecommitdiff
path: root/docs/style-guide.txt
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2005-12-20 15:23:20 +0000
committerRob Landley <rob@landley.net>2005-12-20 15:23:20 +0000
commit6a24976ceb6dc4421df04ebefaba25e4da6b4cca (patch)
tree6636ab9b407f53ba78e2f93b75433b9995647e3d /docs/style-guide.txt
parent6b903a2d8a76354078de536929e6a638c1f29330 (diff)
downloadbusybox-6a24976ceb6dc4421df04ebefaba25e4da6b4cca.tar.gz
Actually, static buffers look like _this_...
Diffstat (limited to 'docs/style-guide.txt')
-rw-r--r--docs/style-guide.txt2
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
like this in code:
/* in a .c file outside any functions */
- static char *buffer[BUFSIZ]; /* happily used by any function in this file,
+ static char buffer[BUFSIZ]; /* happily used by any function in this file,
but ick! big! */
The problem with these is that any time any busybox app is run, you pay a