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:
authorJoshua Leung <aligorith@gmail.com>2009-02-13 01:24:51 +0300
committerJoshua Leung <aligorith@gmail.com>2009-02-13 01:24:51 +0300
commitc5d8155aebd00edf95f1baa1f586fe557cfa9dc5 (patch)
tree936912a621d300c3e15f48ac41a252196318c135 /source/blender/editors/uvedit
parent763a98f4c0169f7a44b37124b88babcc0df02dc2 (diff)
Compilation fix: added missing ;
Diffstat (limited to 'source/blender/editors/uvedit')
-rw-r--r--source/blender/editors/uvedit/uvedit_unwrap_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/uvedit/uvedit_unwrap_ops.c b/source/blender/editors/uvedit/uvedit_unwrap_ops.c
index d8b1dd66325..7efeb51e6f2 100644
--- a/source/blender/editors/uvedit/uvedit_unwrap_ops.c
+++ b/source/blender/editors/uvedit/uvedit_unwrap_ops.c
@@ -933,7 +933,7 @@ static int from_view_exec(bContext *C, wmOperator *op)
static int from_view_poll(bContext *C)
{
- RegionView3D *rv3d= CTX_wm_region_view3d(C)
+ RegionView3D *rv3d= CTX_wm_region_view3d(C);
if(!ED_operator_uvmap(C))
return 0;