svn commit: r266889 - stable/10/usr.sbin/pmcannotate

George V. Neville-Neil gnn at FreeBSD.org
Fri May 30 15:00:50 UTC 2014


Author: gnn
Date: Fri May 30 15:00:50 2014
New Revision: 266889
URL: http://svnweb.freebsd.org/changeset/base/266889

Log:
  MFC: 266166
  
  Extend the size of the function or symbol that can be annotated.

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

Modified: stable/10/usr.sbin/pmcannotate/pmcannotate.c
==============================================================================
--- stable/10/usr.sbin/pmcannotate/pmcannotate.c	Fri May 30 14:58:06 2014	(r266888)
+++ stable/10/usr.sbin/pmcannotate/pmcannotate.c	Fri May 30 15:00:50 2014	(r266889)
@@ -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-all mailing list