svn commit: r322618 - head/usr.bin/grep

Kyle Evans kevans at FreeBSD.org
Thu Aug 17 13:40:46 UTC 2017


Author: kevans
Date: Thu Aug 17 13:40:45 2017
New Revision: 322618
URL: https://svnweb.freebsd.org/changeset/base/322618

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

Modified:
  head/usr.bin/grep/util.c

Modified: head/usr.bin/grep/util.c
==============================================================================
--- head/usr.bin/grep/util.c	Thu Aug 17 11:36:39 2017	(r322617)
+++ head/usr.bin/grep/util.c	Thu Aug 17 13:40:45 2017	(r322618)
@@ -443,7 +443,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;


More information about the svn-src-all mailing list