svn commit: r282609 - head/usr.bin/checknr

Baptiste Daroussin bapt at FreeBSD.org
Thu May 7 21:30:30 UTC 2015


Author: bapt
Date: Thu May  7 21:30:29 2015
New Revision: 282609
URL: https://svnweb.freebsd.org/changeset/base/282609

Log:
  Reduce the size to 64 for the commands, 512 was way too large for the purpose
  
  Noticed by:	julian

Modified:
  head/usr.bin/checknr/checknr.c

Modified: head/usr.bin/checknr/checknr.c
==============================================================================
--- head/usr.bin/checknr/checknr.c	Thu May  7 20:54:38 2015	(r282608)
+++ head/usr.bin/checknr/checknr.c	Thu May  7 21:30:29 2015	(r282609)
@@ -313,7 +313,7 @@ static void
 process(FILE *f)
 {
 	int i, n;
-	char mac[512];	/* The current macro or nroff command */
+	char mac[64];	/* The current macro or nroff command */
 	char *line;
 	size_t linecap;
 	int pl;


More information about the svn-src-all mailing list