aboutsummaryrefslogtreecommitdiff
path: root/editors/ed.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-06-04 10:16:52 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-06-04 10:16:52 +0000
commit74324c86663f57a19c1de303ee8c8e5449db9ef2 (patch)
tree11f5da9de4212875ce5811be2e1050e076378c9a /editors/ed.c
parent4e5f82c76f08614d0b69f9ec4a8baac303af15f6 (diff)
downloadbusybox-w32-74324c86663f57a19c1de303ee8c8e5449db9ef2.tar.gz
busybox-w32-74324c86663f57a19c1de303ee8c8e5449db9ef2.tar.bz2
busybox-w32-74324c86663f57a19c1de303ee8c8e5449db9ef2.zip
Audit bb_common_bufsiz usage, add script which looks for misuse.
tr: stop using globals needlessly. code: -103 bytes
Diffstat (limited to 'editors/ed.c')
-rw-r--r--editors/ed.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/editors/ed.c b/editors/ed.c
index 731aef1cb..e6576b406 100644
--- a/editors/ed.c
+++ b/editors/ed.c
@@ -9,9 +9,11 @@
9 9
10#include "libbb.h" 10#include "libbb.h"
11 11
12#define searchString bb_common_bufsiz1
13
12enum { 14enum {
13 USERSIZE = sizeof(bb_common_bufsiz1) > 1024 ? 1024 15 USERSIZE = sizeof(searchString) > 1024 ? 1024
14 : sizeof(bb_common_bufsiz1) - 1, /* max line length typed in by user */ 16 : sizeof(searchString) - 1, /* max line length typed in by user */
15 INITBUF_SIZE = 1024, /* initial buffer size */ 17 INITBUF_SIZE = 1024, /* initial buffer size */
16}; 18};
17 19
@@ -22,8 +24,6 @@ typedef struct LINE {
22 char data[1]; 24 char data[1];
23} LINE; 25} LINE;
24 26
25#define searchString bb_common_bufsiz1
26
27static LINE lines, *curLine; 27static LINE lines, *curLine;
28static int curNum, lastNum, marks[26], dirty; 28static int curNum, lastNum, marks[26], dirty;
29static char *bufBase, *bufPtr, *fileName; 29static char *bufBase, *bufPtr, *fileName;