[Bf-blender-cvs] [4767de1] asset-experiments: Fix win build...

Bastien Montagne noreply at git.blender.org
Thu May 7 19:31:30 CEST 2015


Commit: 4767de15b85a78767433bebfa2990d6da468bdf6
Author: Bastien Montagne
Date:   Thu May 7 19:30:56 2015 +0200
Branches: asset-experiments
https://developer.blender.org/rB4767de15b85a78767433bebfa2990d6da468bdf6

Fix win build...

===================================================================

M	source/blender/editors/space_file/filelist.c

===================================================================

diff --git a/source/blender/editors/space_file/filelist.c b/source/blender/editors/space_file/filelist.c
index 14c5062..8a3f4f6 100644
--- a/source/blender/editors/space_file/filelist.c
+++ b/source/blender/editors/space_file/filelist.c
@@ -47,6 +47,7 @@
 #include "MEM_guardedalloc.h"
 
 #include "BLI_blenlib.h"
+#include "BLI_fileops.h"
 #include "BLI_fileops_types.h"
 #include "BLI_fnmatch.h"
 #include "BLI_ghash.h"
@@ -57,7 +58,6 @@
 #include "BLI_task.h"
 #include "BLI_threads.h"
 #include "BLI_utildefines.h"
-#include "BLI_fileops_types.h"
 
 #ifdef WIN32
 #  include "BLI_winstuff.h"
@@ -216,7 +216,7 @@ typedef struct FileListInternEntry {
 	char *relpath;
 	char *name;  /* not striclty needed, but used during sorting, avoids to have to recompute it there... */
 
-	struct stat st;
+	BLI_stat_t st;
 } FileListInternEntry;
 
 typedef struct FileListIntern {




More information about the Bf-blender-cvs mailing list