Reduce the size to 64 for the commands, 512 was way too large for the purpose

Noticed by:	julian
This commit is contained in:
Baptiste Daroussin 2015-05-07 21:30:29 +00:00
parent 8b45db8ee2
commit 696e43653b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=282609

View File

@ -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;