aboutsummaryrefslogtreecommitdiff
path: root/editors/diff.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-07-21 15:08:09 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-07-21 15:08:09 +0000
commitb71c668c577f7780362f7ea632895c11e3760d66 (patch)
tree860ccf38cce8c5347ae2b714a22b82a1d7dba323 /editors/diff.c
parent82bd9ee64546c4f6f60303f6356377ce6b695a06 (diff)
downloadbusybox-w32-b71c668c577f7780362f7ea632895c11e3760d66.tar.gz
busybox-w32-b71c668c577f7780362f7ea632895c11e3760d66.tar.bz2
busybox-w32-b71c668c577f7780362f7ea632895c11e3760d66.zip
style fix (stray space before ';')
Diffstat (limited to 'editors/diff.c')
-rw-r--r--editors/diff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/diff.c b/editors/diff.c
index ef39623ef..88f8b22db 100644
--- a/editors/diff.c
+++ b/editors/diff.c
@@ -328,11 +328,11 @@ static void prune(void)
328 328
329 for (pref = 0; pref < len[0] && pref < len[1] && 329 for (pref = 0; pref < len[0] && pref < len[1] &&
330 file[0][pref + 1].value == file[1][pref + 1].value; pref++) 330 file[0][pref + 1].value == file[1][pref + 1].value; pref++)
331 ; 331 continue;
332 for (suff = 0; suff < len[0] - pref && suff < len[1] - pref && 332 for (suff = 0; suff < len[0] - pref && suff < len[1] - pref &&
333 file[0][len[0] - suff].value == file[1][len[1] - suff].value; 333 file[0][len[0] - suff].value == file[1][len[1] - suff].value;
334 suff++) 334 suff++)
335 ; 335 continue;
336 for (j = 0; j < 2; j++) { 336 for (j = 0; j < 2; j++) {
337 sfile[j] = file[j] + pref; 337 sfile[j] = file[j] + pref;
338 slen[j] = len[j] - pref - suff; 338 slen[j] = len[j] - pref - suff;