[Bf-blender-cvs] [99bcfb825fa] master: Cleanup: Avoid double semi-colon

Sergey Sharybin noreply at git.blender.org
Fri Mar 2 11:26:31 CET 2018


Commit: 99bcfb825fa18f549d5cb7da1e86a3f855ef839e
Author: Sergey Sharybin
Date:   Fri Mar 2 11:26:07 2018 +0100
Branches: master
https://developer.blender.org/rB99bcfb825fa18f549d5cb7da1e86a3f855ef839e

Cleanup: Avoid double semi-colon

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

M	source/blender/depsgraph/intern/depsgraph.cc

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

diff --git a/source/blender/depsgraph/intern/depsgraph.cc b/source/blender/depsgraph/intern/depsgraph.cc
index 1dbbd0cb89f..841242b995e 100644
--- a/source/blender/depsgraph/intern/depsgraph.cc
+++ b/source/blender/depsgraph/intern/depsgraph.cc
@@ -128,7 +128,7 @@ static bool pointer_to_component_node_criteria(
 			*type = DEG_NODE_TYPE_PARAMETERS;
 			*subdata = "";
 			*operation_code = DEG_OPCODE_PARAMETERS_EVAL;
-			*operation_name = pchan->name;;
+			*operation_name = pchan->name;
 		}
 		else {
 			/* Bone - generally, we just want the bone component. */



More information about the Bf-blender-cvs mailing list