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>2010-10-23 20:03:31 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-10-23 20:03:31 +0400
commit2d9be2226a7b8ec35f3055743f3d6e381fe78757 (patch)
treed3103047e0822c31cfd06b059317c98a12a3dc6d /source/creator
parent05b297c52f025b8d2068b742d944ecd92c402256 (diff)
warning fixes.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index ed2f671a161..25f01ea0bea 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -853,6 +853,7 @@ static int run_python(int argc, char **argv, void *data)
return 0;
}
#else
+ (void)argc; (void)argv; (void)data; /* unused */
printf("This blender was built without python support\n");
return 0;
#endif /* DISABLE_PYTHON */
@@ -868,6 +869,7 @@ static int run_python_console(int UNUSED(argc), char **argv, void *data)
return 0;
#else
+ (void)argv; (void)data; /* unused */
printf("This blender was built without python support\n");
return 0;
#endif /* DISABLE_PYTHON */