diff options
author | Denis Vlasenko | 2009-04-01 11:24:04 +0000 |
---|---|---|
committer | Denis Vlasenko | 2009-04-01 11:24:04 +0000 |
commit | 3266aa9ec285dbcf254daa17c103bf69dc755967 (patch) | |
tree | 265f69a3085b0d712d355580d768242734e5951a /editors | |
parent | 88b8f0a3475fc1f2e1b3cf58b63902551dae0169 (diff) | |
download | busybox-3266aa9ec285dbcf254daa17c103bf69dc755967.zip busybox-3266aa9ec285dbcf254daa17c103bf69dc755967.tar.gz |
trailing whitespace removal
Diffstat (limited to 'editors')
-rw-r--r-- | editors/vi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/vi.c b/editors/vi.c index 7f5f2dc..0497bc2 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -1677,12 +1677,12 @@ static char *char_insert(char *p, char c) // insert the char c at 'p' q = prev_line(p); // use prev line as template len = strspn(q, " \t"); // space or tab if (len) { - uintptr_t bias; + uintptr_t bias; bias = text_hole_make(p, len); p += bias; q += bias; memcpy(p, q, len); - p += len; + p += len; } } #endif |