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

Conrad Meyer cem at FreeBSD.org
Mon Jul 9 08:37:56 UTC 2018


Author: cem
Date: Mon Jul  9 08:37:55 2018
New Revision: 336127
URL: https://svnweb.freebsd.org/changeset/base/336127

Log:
  gzip(1): Don't shadow global 'err'
  
  Unbreak work build on ppc due to -Werror=shadow.  Introduced in r336121.
  
  X-MFC-With:		r336121

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

Modified: head/usr.bin/gzip/gzip.c
==============================================================================
--- head/usr.bin/gzip/gzip.c	Mon Jul  9 08:19:04 2018	(r336126)
+++ head/usr.bin/gzip/gzip.c	Mon Jul  9 08:37:55 2018	(r336127)
@@ -1429,7 +1429,7 @@ file_uncompress(char *file, char *outfile, size_t outs
 	unsigned char header1[4];
 	enum filetype method;
 	int fd, ofd, zfd = -1;
-	int err;
+	int error;
 	size_t in_size;
 #ifndef SMALL
 	ssize_t rv;
@@ -1602,9 +1602,9 @@ file_uncompress(char *file, char *outfile, size_t outs
 
 		size = zuncompress(in, out, NULL, 0, NULL);
 		/* need to fclose() if ferror() is true... */
-		err = ferror(in);
-		if (err | fclose(in)) {
-			if (err)
+		error = ferror(in);
+		if (error | fclose(in)) {
+			if (error)
 				maybe_warn("failed infile");
 			else
 				maybe_warn("failed infile fclose");


More information about the svn-src-all mailing list