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:
authorAntony Riakiotakis <kalast@gmail.com>2013-04-13 18:05:31 +0400
committerAntony Riakiotakis <kalast@gmail.com>2013-04-13 18:05:31 +0400
commit9e8047d37b94be372b705934871d24670d42a9ab (patch)
tree7c8eda042c8ead5388f2239f44ac99db56e84cd8 /source/creator
parent84071fbf0a926d2b429eb437d30032fe9a482f45 (diff)
Fix compilation, ifdef test_file just in case it is useful for later.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index aecff4c9e03..3074d09646f 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -1196,10 +1196,13 @@ static int set_addons(int argc, const char **argv, void *data)
}
}
-static int test_file(int UNUSED(argc), const char **argv, void *data)
+#if 0
+static int test_file(int UNUSED(argc), const char **argv, void *UNUSED(data))
{
printf("path is %s\n", argv[0]);
+ return 1;
}
+#endif
static int load_file(int UNUSED(argc), const char **argv, void *data)
{