svn commit: r205660 - head/sys/ia64/ia64

Nathan Whitehorn nwhitehorn at FreeBSD.org
Fri Mar 26 00:53:14 UTC 2010


Author: nwhitehorn
Date: Fri Mar 26 00:53:13 2010
New Revision: 205660
URL: http://svn.freebsd.org/changeset/base/205660

Log:
  Fix the ia64 build.
  
  Pointy hat to: me

Modified:
  head/sys/ia64/ia64/machdep.c

Modified: head/sys/ia64/ia64/machdep.c
==============================================================================
--- head/sys/ia64/ia64/machdep.c	Fri Mar 26 00:49:06 2010	(r205659)
+++ head/sys/ia64/ia64/machdep.c	Fri Mar 26 00:53:13 2010	(r205660)
@@ -1381,7 +1381,7 @@ exec_setregs(struct thread *td, struct i
 		 * Assumes that (bspstore & 0x1f8) < 0x1e0.
 		 */
 		suword((caddr_t)tf->tf_special.bspstore - 24, stack);
-		suword((caddr_t)tf->tf_special.bspstore - 16, ps_strings);
+		suword((caddr_t)tf->tf_special.bspstore - 16, imgp->ps_strings);
 		suword((caddr_t)tf->tf_special.bspstore -  8, 0);
 	}
 


More information about the svn-src-head mailing list