summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authormurray <murray@FreeBSD.org>2002-04-08 08:34:00 +0000
committermurray <murray@FreeBSD.org>2002-04-08 08:34:00 +0000
commitcc26525bb5d76e058c2c6546f6d1154c86124b25 (patch)
treed071ad76aa19bd825ed42751e26583c3484ec9b5 /usr.bin
parent29317d861d46ff9f174b928463b1a22f81d5004f (diff)
downloadFreeBSD-src-cc26525bb5d76e058c2c6546f6d1154c86124b25.zip
FreeBSD-src-cc26525bb5d76e058c2c6546f6d1154c86124b25.tar.gz
GCC 3.1 cleanup - add a break after default: at the end of a switch
statement.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/tail/forward.c1
-rw-r--r--usr.bin/tail/reverse.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/usr.bin/tail/forward.c b/usr.bin/tail/forward.c
index 0fa2776..0f35fbd 100644
--- a/usr.bin/tail/forward.c
+++ b/usr.bin/tail/forward.c
@@ -173,6 +173,7 @@ forward(fp, style, off, sbp)
return;
break;
default:
+ break;
}
if (fflag) {
diff --git a/usr.bin/tail/reverse.c b/usr.bin/tail/reverse.c
index f690974..d4ce69d 100644
--- a/usr.bin/tail/reverse.c
+++ b/usr.bin/tail/reverse.c
@@ -103,6 +103,7 @@ reverse(fp, style, off, sbp)
r_buf(fp);
break;
default:
+ break;
}
}
OpenPOWER on IntegriCloud