diff options
author | alfred <alfred@FreeBSD.org> | 2002-05-11 00:21:00 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-05-11 00:21:00 +0000 |
commit | c4d4a5fa128418ce3ec0af7a90c4b12eecc315a8 (patch) | |
tree | 78b8b58460f5f142b91cf2ae0a1e2d1afa9c795c | |
parent | b900b2ab4e6510e1288e6f66988c8c8c404a1949 (diff) | |
download | FreeBSD-src-c4d4a5fa128418ce3ec0af7a90c4b12eecc315a8.zip FreeBSD-src-c4d4a5fa128418ce3ec0af7a90c4b12eecc315a8.tar.gz |
Add semicolon to empty default case to silence warning.
-rw-r--r-- | bin/cp/cp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/cp/cp.c b/bin/cp/cp.c index 21439d8a..935388d 100644 --- a/bin/cp/cp.c +++ b/bin/cp/cp.c @@ -272,6 +272,7 @@ copy(char *argv[], enum op type, int fts_options) badcp = rval = 1; continue; default: + ; } /* |