svn commit: r246462 - head/contrib/libcxxrt

David Chisnall theraven at FreeBSD.org
Thu Feb 7 11:08:03 UTC 2013


Author: theraven
Date: Thu Feb  7 11:08:03 2013
New Revision: 246462
URL: http://svnweb.freebsd.org/changeset/base/246462

Log:
  Fix a copy-and-paste error in libcxxrt.

Modified:
  head/contrib/libcxxrt/exception.cc

Modified: head/contrib/libcxxrt/exception.cc
==============================================================================
--- head/contrib/libcxxrt/exception.cc	Thu Feb  7 11:01:56 2013	(r246461)
+++ head/contrib/libcxxrt/exception.cc	Thu Feb  7 11:08:03 2013	(r246462)
@@ -1387,7 +1387,7 @@ namespace std
 	{
 		if (thread_local_handlers) { return pathscale::set_unexpected(f); }
 
-		return ATOMIC_SWAP(&terminateHandler, f);
+		return ATOMIC_SWAP(&unexpectedHandler, f);
 	}
 	/**
 	 * Sets the function that is called to terminate the program.


More information about the svn-src-head mailing list