svn commit: r208889 - head/usr.bin/gzip

Xin LI delphij at FreeBSD.org
Mon Jun 7 10:10:45 UTC 2010


Author: delphij
Date: Mon Jun  7 10:10:44 2010
New Revision: 208889
URL: http://svn.freebsd.org/changeset/base/208889

Log:
  Follow up revision 208888 with purely ident changes.
  
  MFC after:	1 week

Modified:
  head/usr.bin/gzip/gzip.c

Modified: head/usr.bin/gzip/gzip.c
==============================================================================
--- head/usr.bin/gzip/gzip.c	Mon Jun  7 10:09:40 2010	(r208888)
+++ head/usr.bin/gzip/gzip.c	Mon Jun  7 10:10:44 2010	(r208889)
@@ -1235,12 +1235,12 @@ file_compress(char *file, char *outfile,
 	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) {


More information about the svn-src-head mailing list