Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 7 Apr 2010 01:11:35 +0000 (UTC)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r206333 - user/jmallett/octeon/lib/csu/mips
Message-ID:  <201004070111.o371BZ9v041949@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201004070111.o371BZ9v041949>