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);
 }
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to