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:
authorCampbell Barton <ideasman42@gmail.com>2012-02-27 02:38:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-27 02:38:49 +0400
commit3ba37b65a32541ac594183d45c0939ee95bb098d (patch)
tree7e9015c177d0e0d679c1dca3ad35c2ed230c6d37 /source/blender/editors/mesh/knifetool.c
parent5df6869b379401874fb2cae0c1e33a58aaab8786 (diff)
style cleanup
Diffstat (limited to 'source/blender/editors/mesh/knifetool.c')
-rwxr-xr-xsource/blender/editors/mesh/knifetool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/knifetool.c b/source/blender/editors/mesh/knifetool.c
index 924be605281..62e82aaee47 100755
--- a/source/blender/editors/mesh/knifetool.c
+++ b/source/blender/editors/mesh/knifetool.c
@@ -1699,7 +1699,7 @@ static void knifenet_fill_faces(knifetool_opdata *kcd)
KnifeVert *kfv;
KnifeEdge *kfe;
facenet_entry *entry;
- ListBase *face_nets = MEM_callocN(sizeof(ListBase)*bm->totface, "face_nets");
+ ListBase *face_nets = MEM_callocN(sizeof(ListBase) * bm->totface, "face_nets");
BMFace **faces = MEM_callocN(sizeof(BMFace *) * bm->totface, "faces knife");
MemArena *arena = BLI_memarena_new(1 << 16, "knifenet_fill_faces");
SmallHash shash;