Module Name:    src
Committed By:   rillig
Date:           Sun Sep 27 19:15:43 UTC 2020

Modified Files:
        src/usr.bin/make: job.h

Log Message:
make(1): fix type of Shell.noPLen


To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 src/usr.bin/make/job.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/make/job.h
diff -u src/usr.bin/make/job.h:1.48 src/usr.bin/make/job.h:1.49
--- src/usr.bin/make/job.h:1.48	Mon Sep 21 17:44:25 2020
+++ src/usr.bin/make/job.h	Sun Sep 27 19:15:43 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: job.h,v 1.48 2020/09/21 17:44:25 rillig Exp $	*/
+/*	$NetBSD: job.h,v 1.49 2020/09/27 19:15:43 rillig Exp $	*/
 
 /*
  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -221,7 +221,7 @@ typedef struct Shell {
     const char   *noPrint;	/* command to skip when printing output from
 				 * shell. This is usually the command which
 				 * was executed to turn off echoing */
-    int           noPLen;	/* length of noPrint command */
+    size_t        noPLen;	/* length of noPrint command */
     Boolean	  hasErrCtl;	/* set if can control error checking for
 				 * individual commands */
     const char	 *errCheck;	/* string to turn error checking on */

Reply via email to