From f0ca40f9c1cc17e0345b06b77ad0c0fad6880242 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 25 Mar 2014 10:10:00 +1100 Subject: Code cleanup: function calls --- source/blender/editors/uvedit/uvedit_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/uvedit/uvedit_ops.c') diff --git a/source/blender/editors/uvedit/uvedit_ops.c b/source/blender/editors/uvedit/uvedit_ops.c index fe398c00b6a..8fc3e7952ca 100644 --- a/source/blender/editors/uvedit/uvedit_ops.c +++ b/source/blender/editors/uvedit/uvedit_ops.c @@ -3250,7 +3250,7 @@ static bool uv_snap_uvs_to_cursor(Scene *scene, Image *ima, Object *obedit, cons BM_ITER_ELEM (l, &liter, efa, BM_LOOPS_OF_FACE) { if (uvedit_uv_select_test(scene, l, cd_loop_uv_offset)) { luv = BM_ELEM_CD_GET_VOID_P(l, cd_loop_uv_offset); - copy_v2_v2 (luv->uv, cursor); + copy_v2_v2(luv->uv, cursor); changed = true; } } -- cgit v1.2.3