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

Reply via email to