diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1995-05-30 05:05:38 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1995-05-30 05:05:38 +0000 |
commit | 2ad6f3dee6bc54535003f4ab26bbc587b7efa38c (patch) | |
tree | a3959baf797787918878bec6d58d6a0fb743ad0a /gnu/usr.bin/diff/ed.c | |
parent | 4f960dd75f181e9fa2edc44324f15f0ab5c64b37 (diff) | |
download | FreeBSD-src-2ad6f3dee6bc54535003f4ab26bbc587b7efa38c.zip FreeBSD-src-2ad6f3dee6bc54535003f4ab26bbc587b7efa38c.tar.gz |
Remove trailing whitespace.
Diffstat (limited to 'gnu/usr.bin/diff/ed.c')
-rw-r--r-- | gnu/usr.bin/diff/ed.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/diff/ed.c b/gnu/usr.bin/diff/ed.c index 717ef35..24f7270 100644 --- a/gnu/usr.bin/diff/ed.c +++ b/gnu/usr.bin/diff/ed.c @@ -36,7 +36,7 @@ print_ed_script (script) static void print_ed_hunk (hunk) - struct change *hunk; + struct change *hunk; { int f0, l0, f1, l1; int deletes, inserts; @@ -180,7 +180,7 @@ print_rcs_hunk (hunk) and the number of lines deleted. */ fprintf (outfile, "%d %d\n", tf0, - (tl0 >= tf0 ? tl0 - tf0 + 1 : 1)); + (tl0 >= tf0 ? tl0 - tf0 + 1 : 1)); } if (inserts) @@ -191,7 +191,7 @@ print_rcs_hunk (hunk) translate_range (&files[1], f1, l1, &tf1, &tl1); fprintf (outfile, "%d %d\n", tl0, - (tl1 >= tf1 ? tl1 - tf1 + 1 : 1)); + (tl1 >= tf1 ? tl1 - tf1 + 1 : 1)); /* Print the inserted lines. */ for (i = f1; i <= l1; i++) |