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;
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to