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

Juli Mallett jmallett at FreeBSD.org
Wed Apr 7 01:11:35 UTC 2010


Author: jmallett
Date: Wed Apr  7 01:11:35 2010
New Revision: 206333
URL: http://svn.freebsd.org/changeset/base/206333

Log:
  Revert previous change.  After discussion with nathanw I understand that it is
  not necessary and was not the cause of the problems I was experiencing.

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	Wed Apr  7 00:34:05 2010	(r206332)
+++ user/jmallett/octeon/lib/csu/mips/crt1.c	Wed Apr  7 01:11:35 2010	(r206333)
@@ -79,7 +79,7 @@ __start(char **ap,
 	char **argv;
 	char **env;
 
-	argc = * (int *) ap;
+	argc = * (long *) ap;
 	argv = ap + 1;
 	env  = ap + 2 + argc;
 	environ = env;


More information about the svn-src-user mailing list