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:
authorNathan Letwory <nathan@letworyinteractive.com>2008-12-30 16:46:20 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-12-30 16:46:20 +0300
commit3fd28ca440743109d447df1d51e368d4b8e13e06 (patch)
tree92dfff1515c7bc3d49e424587d5fc3bf65b5ae3f /source/blender/editors
parent25fac7b001aaa03f6341a0c04e08798a01379ca3 (diff)
2.5
* remove a stray ; - it would be an empty statement, which is a proper statement, but not so nice when doing still declarations :) MSVC will complain.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index e693155706d..0204389c819 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -4255,7 +4255,7 @@ int EdgeSlide(EditMesh *em, short immediate, float imperc)
if (!immediate && (mval[0] == mvalo[0] && mval[1] == mvalo[1])) {
PIL_sleep_ms(10);
} else {
- char *p = str;;
+ char *p = str;
int ctrl= 0, shift= 0; // XXX
mvalo[0] = mval[0];