[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [21060] branches/blender2.5/blender/intern /guardedalloc/intern/mallocn.c: mistake in last commit.

Campbell Barton ideasman42 at gmail.com
Sun Jun 21 18:37:13 CEST 2009


Revision: 21060
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=21060
Author:   campbellbarton
Date:     2009-06-21 18:37:13 +0200 (Sun, 21 Jun 2009)

Log Message:
-----------
mistake in last commit.

Modified Paths:
--------------
    branches/blender2.5/blender/intern/guardedalloc/intern/mallocn.c

Modified: branches/blender2.5/blender/intern/guardedalloc/intern/mallocn.c
===================================================================
--- branches/blender2.5/blender/intern/guardedalloc/intern/mallocn.c	2009-06-21 16:18:38 UTC (rev 21059)
+++ branches/blender2.5/blender/intern/guardedalloc/intern/mallocn.c	2009-06-21 16:37:13 UTC (rev 21060)
@@ -38,8 +38,13 @@
 #include <stdarg.h>
 
 /* mmap exception */
+#if defined(WIN32)
 #include <sys/types.h>
+#include "mmap_win.h"
+#else
+#include <sys/types.h>
 #include <sys/mman.h>
+#endif
 
 #include "MEM_guardedalloc.h"
 





More information about the Bf-blender-cvs mailing list