From owner-svn-src-stable@FreeBSD.ORG Fri May 30 15:00:50 2014 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D571AFFC; Fri, 30 May 2014 15:00:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C1C6B2F0A; Fri, 30 May 2014 15:00:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4UF0otU008003; Fri, 30 May 2014 15:00:50 GMT (envelope-from gnn@svn.freebsd.org) Received: (from gnn@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4UF0oh3008002; Fri, 30 May 2014 15:00:50 GMT (envelope-from gnn@svn.freebsd.org) Message-Id: <201405301500.s4UF0oh3008002@svn.freebsd.org> From: "George V. Neville-Neil" Date: Fri, 30 May 2014 15:00:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r266889 - stable/10/usr.sbin/pmcannotate X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2014 15:00:50 -0000 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 -#define FNBUFF 161 -#define LNBUFF 161 +#define FNBUFF 512 +#define LNBUFF 512 #define TMPPATH "/tmp/pmcannotate.XXXXXX"