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>2009-10-21 14:56:31 +0400
committerJoshua Leung <aligorith@gmail.com>2009-10-21 14:56:31 +0400
commit2344d62dfbb6f41318ea75fb610d1823baf23cfb (patch)
tree9d0a9539186ca9bd069e92920fd29f7c521ef1b6 /source/blender/editors/mesh/editmesh_add.c
parent7685def9af9f69c2ff176a32d586fcbf0d938512 (diff)
Silencing some compiler warnings for mingw
* Unused functions * Uninitialised vars
Diffstat (limited to 'source/blender/editors/mesh/editmesh_add.c')
-rw-r--r--source/blender/editors/mesh/editmesh_add.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_add.c b/source/blender/editors/mesh/editmesh_add.c
index 1514f725705..e7cf03cd230 100644
--- a/source/blender/editors/mesh/editmesh_add.c
+++ b/source/blender/editors/mesh/editmesh_add.c
@@ -1311,7 +1311,7 @@ static void make_prim_ext(bContext *C, int type, int tot, int seg,
int subdiv, float dia, float depth, int ext, int fill)
{
Object *obedit= CTX_data_edit_object(C);
- int newob;
+ int newob = 0;
float mat[4][4];
if(obedit==NULL || obedit->type!=OB_MESH) {