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:
authorGuillermo S. Romero <gsr.b3d@infernal-iceberg.com>2009-10-21 21:56:26 +0400
committerGuillermo S. Romero <gsr.b3d@infernal-iceberg.com>2009-10-21 21:56:26 +0400
commit5fb73d8b81fbd1823a6c807714d6b3589e918a3b (patch)
tree4fc89128e6684313da52ad76e4b43b4bb0c62950 /source/blender/editors/mesh/editmesh_loop.c
parenteab11543f3c411940744ab2f447a5c222d5a50dd (diff)
Make compiler happy, remove doubtful non init usage.
Diffstat (limited to 'source/blender/editors/mesh/editmesh_loop.c')
-rw-r--r--source/blender/editors/mesh/editmesh_loop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/editmesh_loop.c b/source/blender/editors/mesh/editmesh_loop.c
index 28103828dd4..3dc9c81a213 100644
--- a/source/blender/editors/mesh/editmesh_loop.c
+++ b/source/blender/editors/mesh/editmesh_loop.c
@@ -207,7 +207,7 @@ void CutEdgeloop(Object *obedit, wmOperator *op, EditMesh *em, int numcuts)
EditEdge *nearest=NULL, *eed;
float fac;
int keys = 0, holdnum=0, selectmode, dist;
- short mvalo[2] = {0,0}, mval[2];
+ short mvalo[2] = {0, 0}, mval[2] = {0, 0};
short event=0, val, choosing=1, cancel=0, cuthalf = 0, smooth=0;
short hasHidden = 0;
char msg[128];
@@ -251,7 +251,7 @@ void CutEdgeloop(Object *obedit, wmOperator *op, EditMesh *em, int numcuts)
// }
#endif
}
- else PIL_sleep_ms(10); // idle
+ else PIL_sleep_ms(10); // idle
while(qtest())