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-12-31 06:37:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-12-31 06:37:28 +0400
commit1aebc0e790c4abe4bdb749fbaad051d1e6c53586 (patch)
treef327c916904ff07cbbf6fd7462768a16aff3c58e /source/blender/bmesh/intern
parentb3aa368c8f43e6ea2bb1423e844645f583a54a94 (diff)
style cleanup
Diffstat (limited to 'source/blender/bmesh/intern')
-rw-r--r--source/blender/bmesh/intern/bmesh_log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/bmesh/intern/bmesh_log.c b/source/blender/bmesh/intern/bmesh_log.c
index 1e94e81e6d7..b821c9875db 100644
--- a/source/blender/bmesh/intern/bmesh_log.c
+++ b/source/blender/bmesh/intern/bmesh_log.c
@@ -540,7 +540,7 @@ void BM_log_mesh_elems_reorder(BMesh *bm, BMLog *log)
const unsigned id = bm_log_vert_id_get(log, v);
const void *key = SET_INT_IN_POINTER(id);
const void *val = BLI_ghash_lookup(id_to_idx, key);
- ((int*)varr)[i++] = GET_INT_FROM_POINTER(val);
+ ((int *)varr)[i++] = GET_INT_FROM_POINTER(val);
}
BLI_ghash_free(id_to_idx, NULL, NULL);
@@ -551,7 +551,7 @@ void BM_log_mesh_elems_reorder(BMesh *bm, BMLog *log)
const unsigned id = bm_log_face_id_get(log, f);
const void *key = SET_INT_IN_POINTER(id);
const void *val = BLI_ghash_lookup(id_to_idx, key);
- ((int*)farr)[i++] = GET_INT_FROM_POINTER(val);
+ ((int *)farr)[i++] = GET_INT_FROM_POINTER(val);
}
BLI_ghash_free(id_to_idx, NULL, NULL);