svn commit: r206283 - user/jmallett/octeon/lib/csu/mips

Juli Mallett jmallett at FreeBSD.org
Tue Apr 6 19:11:33 UTC 2010


Author: jmallett
Date: Tue Apr  6 19:11:33 2010
New Revision: 206283
URL: http://svn.freebsd.org/changeset/base/206283

Log:
  Adjust for nathanw's fix to kern_exec to store argc as an int.

Modified:
  user/jmallett/octeon/lib/csu/mips/crt1.c

Modified: user/jmallett/octeon/lib/csu/mips/crt1.c
==============================================================================
--- user/jmallett/octeon/lib/csu/mips/crt1.c	Tue Apr  6 19:00:35 2010	(r206282)
+++ user/jmallett/octeon/lib/csu/mips/crt1.c	Tue Apr  6 19:11:33 2010	(r206283)
@@ -79,7 +79,7 @@ __start(char **ap,
 	char **argv;
 	char **env;
 
-	argc = * (long *) ap;
+	argc = * (int *) ap;
 	argv = ap + 1;
 	env  = ap + 2 + argc;
 	environ = env;


More information about the svn-src-user mailing list