From owner-svn-src-all@FreeBSD.ORG Mon Aug 19 17:09:14 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id BE8A0C47; Mon, 19 Aug 2013 17:09:14 +0000 (UTC) (envelope-from jhb@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AA8BB2B5C; Mon, 19 Aug 2013 17:09:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7JH9ELd049366; Mon, 19 Aug 2013 17:09:14 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7JH9ELD049365; Mon, 19 Aug 2013 17:09:14 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <201308191709.r7JH9ELD049365@svn.freebsd.org> From: John Baldwin Date: Mon, 19 Aug 2013 17:09:14 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r254538 - head/usr.bin/truss X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 17:09:14 -0000 Author: jhb Date: Mon Aug 19 17:09:14 2013 New Revision: 254538 URL: http://svnweb.freebsd.org/changeset/base/254538 Log: Remove incorrect 'const' qualifier from pointers to dynamic string buffers I added in the previous commit. Pointy hat to: jhb MFC after: 1 month Modified: head/usr.bin/truss/syscalls.c Modified: head/usr.bin/truss/syscalls.c ============================================================================== --- head/usr.bin/truss/syscalls.c Mon Aug 19 16:47:06 2013 (r254537) +++ head/usr.bin/truss/syscalls.c Mon Aug 19 17:09:14 2013 (r254538) @@ -894,7 +894,7 @@ print_arg(struct syscall_args *sc, unsig tmp = strdup(xlookup_bits(mprot_flags, args[sc->offset])); break; case Mmapflags: { - const char *base, *alignstr; + char *base, *alignstr; int align, flags; /*