diff options
author | delphij <delphij@FreeBSD.org> | 2010-06-07 10:10:44 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2010-06-07 10:10:44 +0000 |
commit | 6052fb4c47903aaf022d0858b927c6ae292c2e57 (patch) | |
tree | 31dbaa425b6adc28673aeefa74110a4de1d8ea54 | |
parent | f640e58a63bdf677750bdd45c86c12d2c8fe8dba (diff) | |
download | FreeBSD-src-6052fb4c47903aaf022d0858b927c6ae292c2e57.zip FreeBSD-src-6052fb4c47903aaf022d0858b927c6ae292c2e57.tar.gz |
Follow up revision 208888 with purely ident changes.
MFC after: 1 week
-rw-r--r-- | usr.bin/gzip/gzip.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/gzip/gzip.c b/usr.bin/gzip/gzip.c index e9d3b20..7778ac0 100644 --- a/usr.bin/gzip/gzip.c +++ b/usr.bin/gzip/gzip.c @@ -1235,12 +1235,12 @@ file_compress(char *file, char *outfile, size_t outsize) if (cflag == 0) { #ifndef SMALL if (isb.st_nlink != 1 && fflag == 0) { - maybe_warnx("%s has %d other link%s -- " - "skipping", file, isb.st_nlink - 1, - isb.st_nlink == 1 ? "" : "s"); - close(in); - return -1; - } + maybe_warnx("%s has %d other link%s -- " + "skipping", file, isb.st_nlink - 1, + isb.st_nlink == 1 ? "" : "s"); + close(in); + return -1; + } if (fflag == 0 && (suff = check_suffix(file, 0)) && suff->zipped[0] != 0) { |