svn commit: r266166 - head/usr.sbin/pmcannotate

George V. Neville-Neil gnn at FreeBSD.org
Thu May 15 18:12:47 UTC 2014


Author: gnn
Date: Thu May 15 18:12:47 2014
New Revision: 266166
URL: http://svnweb.freebsd.org/changeset/base/266166

Log:
  Extend the size of the function or symbol that can be annotated.
  
  MFC after:	2 weeks

Modified:
  head/usr.sbin/pmcannotate/pmcannotate.c

Modified: head/usr.sbin/pmcannotate/pmcannotate.c
==============================================================================
--- head/usr.sbin/pmcannotate/pmcannotate.c	Thu May 15 18:07:35 2014	(r266165)
+++ head/usr.sbin/pmcannotate/pmcannotate.c	Thu May 15 18:12:47 2014	(r266166)
@@ -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-head mailing list