[Bf-blender-cvs] [cfd131b] soc-2013-paint: Use size for fixed length array args

Campbell Barton noreply at git.blender.org
Thu Jul 17 00:19:43 CEST 2014


Commit: cfd131bcbb6b0a48cd8ef65a7be8cfb68dfd26d2
Author: Campbell Barton
Date:   Thu Jul 17 08:18:48 2014 +1000
https://developer.blender.org/rBcfd131bcbb6b0a48cd8ef65a7be8cfb68dfd26d2

Use size for fixed length array args

===================================================================

M	source/blender/editors/include/ED_view3d.h
M	source/blender/editors/space_view3d/view3d_edit.c

===================================================================

diff --git a/source/blender/editors/include/ED_view3d.h b/source/blender/editors/include/ED_view3d.h
index 3bb49ab..ed68dd7 100644
--- a/source/blender/editors/include/ED_view3d.h
+++ b/source/blender/editors/include/ED_view3d.h
@@ -84,7 +84,7 @@ typedef struct ViewDepths {
 
 float *ED_view3d_cursor3d_get(struct Scene *scene, struct View3D *v3d);
 void   ED_view3d_cursor3d_position(struct bContext *C, float fp[3], const int mval[2]);
-void   ED_view3d_cursor3d_update(struct bContext *C, const int *mval);
+void   ED_view3d_cursor3d_update(struct bContext *C, const int mval[2]);
 
 struct Camera *ED_view3d_camera_data_get(struct View3D *v3d, struct RegionView3D *rv3d);
 
diff --git a/source/blender/editors/space_view3d/view3d_edit.c b/source/blender/editors/space_view3d/view3d_edit.c
index 6645d27..de46ca5 100644
--- a/source/blender/editors/space_view3d/view3d_edit.c
+++ b/source/blender/editors/space_view3d/view3d_edit.c
@@ -4435,7 +4435,7 @@ void ED_view3d_cursor3d_position(bContext *C, float fp[3], const int mval[2])
 	}
 }
 
-void ED_view3d_cursor3d_update(bContext *C, const int *mval)
+void ED_view3d_cursor3d_update(bContext *C, const int mval[2])
 {
 	Scene *scene = CTX_data_scene(C);
 	View3D *v3d = CTX_wm_view3d(C);




More information about the Bf-blender-cvs mailing list