Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 17 Aug 2017 13:48:46 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r322619 - stable/11/usr.bin/grep
Message-ID:  <201708171348.v7HDmkqe045347@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevans
Date: Thu Aug 17 13:48:46 2017
New Revision: 322619
URL: https://svnweb.freebsd.org/changeset/base/322619

Log:
  bsdgrep: fix build when linking against libgnuregex
  
  MFC r322618: bsdgrep: cast pmatch.rm_so to fix build when linking against
  libgnuregex
  
  Approved by:	emaste (mentor)

Modified:
  stable/11/usr.bin/grep/util.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/usr.bin/grep/util.c
==============================================================================
--- stable/11/usr.bin/grep/util.c	Thu Aug 17 13:40:45 2017	(r322618)
+++ stable/11/usr.bin/grep/util.c	Thu Aug 17 13:48:46 2017	(r322619)
@@ -450,7 +450,7 @@ procline(struct parsec *pc)
 				 */
 				if (r == REG_NOMATCH &&
 				    (retry == pc->lnstart ||
-				    pmatch.rm_so + 1 < retry))
+				    (unsigned int)pmatch.rm_so + 1 < retry))
 					retry = pmatch.rm_so + 1;
 				if (r == REG_NOMATCH)
 					continue;



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