Actually, static buffers look like _this_...
authorRob Landley <rob@landley.net>
Tue, 20 Dec 2005 15:23:20 +0000 (15:23 -0000)
committerRob Landley <rob@landley.net>
Tue, 20 Dec 2005 15:23:20 +0000 (15:23 -0000)
docs/style-guide.txt

index 915d9b27d043f96b115c0b83f2b21713da354b1b..d7d8e5ec7801e9defda951e04ee06a8175db2497 100644 (file)
@@ -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