From 7729b9ca037179944fee70711adc168d81b40029 Mon Sep 17 00:00:00 2001 From: landley Date: Tue, 20 Dec 2005 15:23:20 +0000 Subject: Actually, static buffers look like _this_... git-svn-id: svn://busybox.net/trunk/busybox@12957 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- docs/style-guide.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') 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 -- cgit v1.2.3-55-g6feb