svn commit: r267405 - stable/9/usr.sbin/pmcannotate

Ed Maste emaste at FreeBSD.org
Thu Jun 12 16:16:12 UTC 2014


Author: emaste
Date: Thu Jun 12 16:16:11 2014
New Revision: 267405
URL: http://svnweb.freebsd.org/changeset/base/267405

Log:
  MFC r266166 by gnn:
  
    Extend the size of the function or symbol that can be annotated.
  
  Approved by:	re

Modified:
  stable/9/usr.sbin/pmcannotate/pmcannotate.c
Directory Properties:
  stable/9/usr.sbin/pmcannotate/   (props changed)

Modified: stable/9/usr.sbin/pmcannotate/pmcannotate.c
==============================================================================
--- stable/9/usr.sbin/pmcannotate/pmcannotate.c	Thu Jun 12 16:00:38 2014	(r267404)
+++ stable/9/usr.sbin/pmcannotate/pmcannotate.c	Thu Jun 12 16:16:11 2014	(r267405)
@@ -41,8 +41,8 @@ __FBSDID("$FreeBSD$");
 
 #include <unistd.h>
 
-#define	FNBUFF	161
-#define	LNBUFF	161
+#define	FNBUFF	512
+#define	LNBUFF	512
 
 #define	TMPPATH	"/tmp/pmcannotate.XXXXXX"
 


More information about the svn-src-stable mailing list