Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-09-04 02:04:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-09-04 02:04:14 +0400
commitaaafa0c2fe2fefacd454e7c4ca30122be2206923 (patch)
treeed0caa3e89f884df46929197cc2c2f38329e95aa /intern/guardedalloc
parentf8c29c999f0f0a6ed7e8a8ba1de444fdc5bdd3f2 (diff)
code cleanup: move file string defines into BLI_path_utils.h, BKE_utildefines is now unused but keep incase we want to add defines there later.
Diffstat (limited to 'intern/guardedalloc')
-rw-r--r--intern/guardedalloc/intern/mmap_win.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/guardedalloc/intern/mmap_win.c b/intern/guardedalloc/intern/mmap_win.c
index a133f92fec4..ab50edb811e 100644
--- a/intern/guardedalloc/intern/mmap_win.c
+++ b/intern/guardedalloc/intern/mmap_win.c
@@ -44,7 +44,7 @@
#define FILE_MAP_EXECUTE 0x0020
#endif
-/* copied from BKE_utildefines.h ugh */
+/* copied from BLI_utildefines.h, ugh */
#ifdef __GNUC__
# define UNUSED(x) UNUSED_ ## x __attribute__((__unused__))
#else