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:
authorTon Roosendaal <ton@blender.org>2004-07-27 19:23:09 +0400
committerTon Roosendaal <ton@blender.org>2004-07-27 19:23:09 +0400
commitf9e07310035a147b07424cbd9ff06ffde4ee5e62 (patch)
treed825c2f793840cf160cbe6b7959fdfa0433a3d1a /source/blender/src/editipo.c
parent4d3cca252ccb624ebca1ba4ad4a2540bdcf3f998 (diff)
What one little missing comma can wreak havoc! :)
Solved crash with choosing World ipo
Diffstat (limited to 'source/blender/src/editipo.c')
-rw-r--r--source/blender/src/editipo.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/src/editipo.c b/source/blender/src/editipo.c
index 8381fc28806..304618b16a8 100644
--- a/source/blender/src/editipo.c
+++ b/source/blender/src/editipo.c
@@ -169,7 +169,7 @@ char *key_ic_names[KEY_TOTNAM] = { "Speed", "Key 1", "Key 2", "Key 3", "Key 4",
"Key 21", "Key 22", "Key 23", "Key 24", "Key 25",
"Key 26", "Key 27", "Key 28", "Key 29", "Key 30",
"Key 31" };
-char *wo_ic_names[WO_TOTNAM] = { "HorR", "HorG" "HorB", "ZenR", "ZenG", "ZenB", "Expos",
+char *wo_ic_names[WO_TOTNAM] = { "HorR", "HorG", "HorB", "ZenR", "ZenG", "ZenB", "Expos",
"Misi", "MisDi", "MisSta", "MisHi", "StarR", "StarB",
"StarG", "StarDi", "StarSi" };
char *la_ic_names[LA_TOTNAM] = { "Energ", "R", "G", "B", "Dist", "SpoSi", "SpoBl",
@@ -891,7 +891,8 @@ void make_world_editipo(SpaceIpo *si)
for(a=0; a<WO_TOTIPO; a++) {
name = getname_world_ei(wo_ar[a]);
- strcpy(ei->name, name);
+
+ strcpy(ei->name, name);
ei->adrcode= wo_ar[a];
if(ei->adrcode & MA_MAP1) {