[Numpy-svn] r6072 - trunk/numpy/random/mtrand

numpy-svn at scipy.org numpy-svn at scipy.org
Mon Nov 17 08:52:55 EST 2008


Author: cdavid
Date: 2008-11-17 07:52:47 -0600 (Mon, 17 Nov 2008)
New Revision: 6072

Modified:
   trunk/numpy/random/mtrand/randomkit.c
Log:
Fix the inaccurate comment regarding _ftime issues with mingw.

Modified: trunk/numpy/random/mtrand/randomkit.c
===================================================================
--- trunk/numpy/random/mtrand/randomkit.c	2008-11-17 12:49:26 UTC (rev 6071)
+++ trunk/numpy/random/mtrand/randomkit.c	2008-11-17 13:52:47 UTC (rev 6072)
@@ -80,8 +80,8 @@
  * something higher than 0x601 to enable _ftime64 and co */
 #define __MSVCRT_VERSION__ 0x0700
 /* mingw msvcr lib import wrongly export _ftime, which does not exist in the
- * actual msvc runtime for version >= 8; we make it an alist to _ftime64, which
- * is available in those versions of the runtime and should be ABI compatible
+ * actual msvc runtime for version >= 8; we make it an alias to _ftime64, which
+ * is available in those versions of the runtime
  */
 #define _FTIME(x) _ftime64((x))
 #else




More information about the Numpy-svn mailing list