From 9ef5c48befdfa36ad5ef5e0ae898e7ca9397abcc Mon Sep 17 00:00:00 2001 From: Bill Fumerola Date: Sun, 4 Jul 1999 17:26:16 +0000 Subject: Clean up some ambiguous nested if/elses. --- usr.bin/tail/tail.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'usr.bin/tail/tail.c') diff --git a/usr.bin/tail/tail.c b/usr.bin/tail/tail.c index 454ef65ca176..416d44145e86 100644 --- a/usr.bin/tail/tail.c +++ b/usr.bin/tail/tail.c @@ -154,7 +154,7 @@ main(argc, argv) * If style not specified, the default is the whole file for -r, and * the last 10 lines if not -r. */ - if (style == NOTSET) + if (style == NOTSET) { if (rflag) { off = 0; style = REVERSE; @@ -162,6 +162,7 @@ main(argc, argv) off = 10; style = RLINES; } + } if (*argv) for (first = 1; fname = *argv++;) { -- cgit v1.2.3