From owner-svn-src-stable@FreeBSD.ORG Sun Jun 23 09:34:55 2013 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id BE21F38C; Sun, 23 Jun 2013 09:34:55 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id B0230168B; Sun, 23 Jun 2013 09:34:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5N9YtGL082687; Sun, 23 Jun 2013 09:34:55 GMT (envelope-from nyan@svn.freebsd.org) Received: (from nyan@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5N9YtZ0082686; Sun, 23 Jun 2013 09:34:55 GMT (envelope-from nyan@svn.freebsd.org) Message-Id: <201306230934.r5N9YtZ0082686@svn.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 23 Jun 2013 09:34:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r252108 - stable/8/sys/pc98/pc98 X-SVN-Group: stable-8 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.14 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: Sun, 23 Jun 2013 09:34:55 -0000 Author: nyan Date: Sun Jun 23 09:34:55 2013 New Revision: 252108 URL: http://svnweb.freebsd.org/changeset/base/252108 Log: MFi386: revision 251332 Use slightly more idiomatic expression to get the address of array. Modified: stable/8/sys/pc98/pc98/machdep.c Modified: stable/8/sys/pc98/pc98/machdep.c ============================================================================== --- stable/8/sys/pc98/pc98/machdep.c Sun Jun 23 09:23:32 2013 (r252107) +++ stable/8/sys/pc98/pc98/machdep.c Sun Jun 23 09:34:55 2013 (r252108) @@ -2734,7 +2734,7 @@ get_fpcontext(struct thread *td, mcontex bzero(mcp->mc_fpstate, sizeof(mcp->mc_fpstate)); #else mcp->mc_ownedfp = npxgetregs(td); - bcopy(&td->td_pcb->pcb_user_save, &mcp->mc_fpstate, + bcopy(&td->td_pcb->pcb_user_save, &mcp->mc_fpstate[0], sizeof(mcp->mc_fpstate)); mcp->mc_fpformat = npxformat(); #endif