diff options
author | Rob Landley <rob@landley.net> | 2005-12-20 15:23:20 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2005-12-20 15:23:20 +0000 |
commit | 6a24976ceb6dc4421df04ebefaba25e4da6b4cca (patch) | |
tree | 6636ab9b407f53ba78e2f93b75433b9995647e3d /docs | |
parent | 6b903a2d8a76354078de536929e6a638c1f29330 (diff) | |
download | busybox-6a24976ceb6dc4421df04ebefaba25e4da6b4cca.tar.gz |
Actually, static buffers look like _this_...
Diffstat (limited to 'docs')
-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 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 |