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
path: root/source
diff options
context:
space:
mode:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-11-28 05:48:37 +0300
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-11-28 05:48:37 +0300
commit7f2829d30e9e39820afb3c756e78b9d72bb5c992 (patch)
tree38d2e8cc6bb4111b7bc6edc7d4284b4cf4b59fde /source
parenta04603d2a0ffed1b3030167449687b893711da32 (diff)
Fix for a compilation issue with MinGW32. The problem was reported
by Dazzle through the BA Freestyle thread, thanks!
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_main_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_main_api.c b/source/blender/makesrna/intern/rna_main_api.c
index a121ac1fbc3..3e4ab4b8172 100644
--- a/source/blender/makesrna/intern/rna_main_api.c
+++ b/source/blender/makesrna/intern/rna_main_api.c
@@ -472,7 +472,7 @@ void rna_Main_particles_remove(Main *bmain, ReportList *reports, ParticleSetting
/* XXX python now has invalid pointer? */
}
-FreestyleLineStyle *rna_Main_linestyles_new(Main *bmain, char* name)
+FreestyleLineStyle *rna_Main_linestyles_new(Main *bmain, const char* name)
{
FreestyleLineStyle *linestyle = FRS_new_linestyle(name, bmain);
linestyle->id.us--;