[Bf-blender-cvs] [9f6c065] master: Cleanup: unused args

Campbell Barton noreply at git.blender.org
Sun Dec 13 17:31:25 CET 2015


Commit: 9f6c06595a0b2a184b6a9153bdaf32bba32d533f
Author: Campbell Barton
Date:   Mon Dec 14 03:24:42 2015 +1100
Branches: master
https://developer.blender.org/rB9f6c06595a0b2a184b6a9153bdaf32bba32d533f

Cleanup: unused args

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

M	source/blender/editors/gpencil/editaction_gpencil.c

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

diff --git a/source/blender/editors/gpencil/editaction_gpencil.c b/source/blender/editors/gpencil/editaction_gpencil.c
index a5d39d7..09a72c1 100644
--- a/source/blender/editors/gpencil/editaction_gpencil.c
+++ b/source/blender/editors/gpencil/editaction_gpencil.c
@@ -550,7 +550,7 @@ static short mirror_gpf_cframe(bGPDframe *gpf, Scene *scene)
 	return 0;
 }
 
-static short mirror_gpf_yaxis(bGPDframe *gpf, Scene *scene)
+static short mirror_gpf_yaxis(bGPDframe *gpf, Scene *UNUSED(scene))
 {
 	int diff;
 	
@@ -562,7 +562,7 @@ static short mirror_gpf_yaxis(bGPDframe *gpf, Scene *scene)
 	return 0;
 }
 
-static short mirror_gpf_xaxis(bGPDframe *gpf, Scene *scene)
+static short mirror_gpf_xaxis(bGPDframe *gpf, Scene *UNUSED(scene))
 {
 	int diff;




More information about the Bf-blender-cvs mailing list