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:
authorJoshua Leung <aligorith@gmail.com>2007-12-17 09:12:01 +0300
committerJoshua Leung <aligorith@gmail.com>2007-12-17 09:12:01 +0300
commitca689313d2f7fe57c4347434bbce62b1b2f6ed0f (patch)
treebc300049ae9792c206e10ba63b9e0f40e4db7b11 /source/blender/src
parentefb2d5fc975354d42b2850279648ede4f7ee53a1 (diff)
More BPyApi (New/2_5x) compiling fixes for mingw.
* Mostly fixed a few more of the tp_base errors, in the manner that Ken did... * There's still a weird warning in draw.c about some function being used but not defined * I've included the source splitting hack here too, as I was getting problems getting it to link the files...
Diffstat (limited to 'source/blender/src')
-rw-r--r--source/blender/src/editarmature.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editarmature.c b/source/blender/src/editarmature.c
index 923d7638495..9639e18281d 100644
--- a/source/blender/src/editarmature.c
+++ b/source/blender/src/editarmature.c
@@ -261,7 +261,7 @@ void editbones_to_armature (ListBase *list, Object *ob)
if (fBone->parent==eBone)
fBone->parent= eBone->parent;
}
- printf("Warning; removed zero sized bone: %s\n", eBone->name);
+ printf("Warning: removed zero sized bone: %s\n", eBone->name);
BLI_freelinkN (list, eBone);
}
}