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:
authorKen Hughes <khughes@pacific.edu>2008-04-25 01:35:56 +0400
committerKen Hughes <khughes@pacific.edu>2008-04-25 01:35:56 +0400
commit33bbe7f340a92f06b36ae155d1d398a83cb00020 (patch)
tree08e2d3c2d65e858588a6002dda3427e4c7618f0a /source/blender/blenlib/intern/util.c
parent9b9359120fdac93b822cfaacf98d0d498cef3887 (diff)
Fix compiler warning about nested C comments.
Diffstat (limited to 'source/blender/blenlib/intern/util.c')
-rw-r--r--source/blender/blenlib/intern/util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenlib/intern/util.c b/source/blender/blenlib/intern/util.c
index d7b9d9905fd..623389a6ba2 100644
--- a/source/blender/blenlib/intern/util.c
+++ b/source/blender/blenlib/intern/util.c
@@ -1224,10 +1224,10 @@ char *BLI_gethome(void) {
}
}
}
- /*
+#if 0
ret = getenv("USERPROFILE");
if (ret) {
- if (BLI_exists(ret)) { /* from fop, also below...
+ if (BLI_exists(ret)) { /* from fop, also below... */
sprintf(dir, "%s\\Application Data\\Blender Foundation\\Blender", ret);
BLI_recurdir_fileops(dir);
if (BLI_exists(dir)) {
@@ -1236,7 +1236,7 @@ char *BLI_gethome(void) {
}
}
}
- */
+#endif
/*
Saving in the Windows dir is less than desirable.