Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 6 Dec 2017 20:09:30 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r326631 - head/usr.bin/sdiff
Message-ID:  <201712062009.vB6K9UJS089466@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Wed Dec  6 20:09:30 2017
New Revision: 326631
URL: https://svnweb.freebsd.org/changeset/base/326631

Log:
  Rename variables confusing gcc 4.2.1
  
  While there is no reason it shadows div(3) gcc 4.2.1 complains about it
  
  MFC after:	1 week

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

Modified: head/usr.bin/sdiff/sdiff.c
==============================================================================
--- head/usr.bin/sdiff/sdiff.c	Wed Dec  6 20:05:36 2017	(r326630)
+++ head/usr.bin/sdiff/sdiff.c	Wed Dec  6 20:09:30 2017	(r326631)
@@ -618,7 +618,7 @@ QUIT:
  * Takes into account that tabs can take multiple columns.
  */
 static void
-println(const char *s1, const char div, const char *s2)
+println(const char *s1, const char divider, const char *s2)
 {
 	size_t col;
 
@@ -635,7 +635,7 @@ println(const char *s1, const char div, const char *s2
 		putchar(' ');
 
 	/* Only print left column. */
-	if (div == ' ' && !s2) {
+	if (divider == ' ' && !s2) {
 		printf(" (\n");
 		return;
 	}
@@ -645,10 +645,10 @@ println(const char *s1, const char div, const char *s2
 	 * need to add the space for padding.
 	 */
 	if (!s2) {
-		printf(" %c\n", div);
+		printf(" %c\n", divider);
 		return;
 	}
-	printf(" %c ", div);
+	printf(" %c ", divider);
 	col += 3;
 
 	/* Skip angle bracket and space. */
@@ -870,14 +870,14 @@ parsecmd(FILE *diffpipe, FILE *file1, FILE *file2)
  * Queues up a diff line.
  */
 static void
-enqueue(char *left, char div, char *right)
+enqueue(char *left, char divider, char *right)
 {
 	struct diffline *diffp;
 
 	if (!(diffp = malloc(sizeof(struct diffline))))
 		err(2, "enqueue");
 	diffp->left = left;
-	diffp->div = div;
+	diffp->div = divider;
 	diffp->right = right;
 	STAILQ_INSERT_TAIL(&diffhead, diffp, diffentries);
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712062009.vB6K9UJS089466>